An ATproto social media client -- with an independent Appview.

refactor(ci): don't do go build on runner

serenity fadc4e21 ff9acff4

+5 -11
-5
.github/workflows/build-and-deploy-catsky-web.yaml
··· 20 20 node-version: 20 21 21 cache: yarn 22 22 23 - - name: Setup golang 24 - uses: actions/setup-go@v6 25 - with: 26 - go-version: "1.24.5" 27 - 28 23 - name: Setup just 29 24 uses: extractions/setup-just@v3 30 25
+5 -6
justfile
··· 34 34 35 35 [group('build')] 36 36 postbuild-web: 37 - ls -a 38 - cd bskyweb && go build -o bskyweb ./cmd/bskyweb/ 39 - cd .. 40 - tar -czf catskyweb.tar.gz bskyweb/ 41 - rsync -avz -e "ssh -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no" catskyweb.tar.gz catsky@${VPS_IP}:/tmp/catsky/ 42 - # TODO: something to trigger the daemon rerun on the VPS. 37 + # after doing the expo web build, we compress the bskyweb folder and send it to vps. 38 + # no need to build the go binary as we'll do that on vps. 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 + # TODO: something to trigger the daemon rerun on the VPS. 43 42 44 43 [group('dev')] 45 44 dev-android-setup: prebuild-android