interactive intro to open social

debug: check if FLY_API_TOKEN is being set

Changed files
+11
.tangled
workflows
+11
.tangled/workflows/deploy.yaml
··· 13 13 command: | 14 14 flyctl version 15 15 16 + - name: check token 17 + environment: 18 + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} 19 + command: | 20 + if [ -z "$FLY_API_TOKEN" ]; then 21 + echo "FLY_API_TOKEN is not set" 22 + exit 1 23 + else 24 + echo "FLY_API_TOKEN is set (length: ${#FLY_API_TOKEN})" 25 + fi 26 + 16 27 - name: deploy to fly.io 17 28 environment: 18 29 FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}