interactive intro to open social

download flyctl binary directly instead of using install script

Changed files
+4 -3
.tangled
workflows
+4 -3
.tangled/workflows/deploy.yaml
··· 15 15 steps: 16 16 - name: install flyctl 17 17 command: | 18 - curl -L https://fly.io/install.sh | sh -s -- -m 19 - export FLYCTL_INSTALL="/root/.fly" 20 - export PATH="$FLYCTL_INSTALL/bin:$PATH" 18 + curl -L https://github.com/superfly/flyctl/releases/latest/download/flyctl_Linux_x86_64.tar.gz -o flyctl.tar.gz 19 + tar -xzf flyctl.tar.gz --no-same-owner 20 + chmod +x flyctl 21 + mv flyctl /usr/local/bin/ 21 22 flyctl version 22 23 23 24 - name: deploy to fly.io