tangled mirror of catsky-🐱 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social

fix(ci): deploy on ci user

serenity 0ce4f18e 2947a3b3

Changed files
+3 -3
scripts
+2 -2
justfile
··· 37 37 # after doing the expo web build, we compress the bskyweb folder and send it to vps. 38 38 # no need to build the go binary as we'll do that on vps. 39 39 tar -czf catskyweb.tar.gz bskyweb/ 40 - rsync -avz -e "ssh -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no" catskyweb.tar.gz catsky@${VPS_IP}:/tmp/catsky/ 41 - rsync -avz -e "ssh -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no" scripts/seraphDeploy.sh catsky@${VPS_IP}:/tmp/catsky/ 40 + rsync -avz -e "ssh -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no" catskyweb.tar.gz ci@${VPS_IP}:/tmp/catsky/ 41 + rsync -avz -e "ssh -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no" scripts/seraphDeploy.sh ci@${VPS_IP}:/tmp/catsky/ 42 42 43 43 [group('dev')] 44 44 dev-android-setup: prebuild-android
+1 -1
scripts/seraphDeploy.sh
··· 1 1 #!/usr/bin/env nix-shell 2 2 #!nix-shell -i bash -p go 3 3 4 - tar -xzf "/tmp/catsky/catskyweb.tar.gz" -C "/opt/catsky/" --strip-components=1 4 + tar -xzf "/tmp/catsky/catskyweb.tar.gz" -C "/opt/catsky/" --strip-components=1 --overwrite 5 5 systemctl restart catsky.service