We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce87ad5 commit b73f514Copy full SHA for b73f514
1 file changed
.github/workflows/deploy-landing.yml
@@ -47,3 +47,21 @@ jobs:
47
NEXT_PUBLIC_SITE_URL: https://hyperpush.dev
48
NEXT_PUBLIC_DISCORD_URL: https://discord.gg/6SRhbZw7ZG
49
run: npm --prefix mesher/landing run build
50
+
51
+ deploy-landing:
52
+ name: Deploy landing to Fly.io
53
+ needs: build-landing
54
+ runs-on: ubuntu-latest
55
+ timeout-minutes: 15
56
+ steps:
57
+ - name: Checkout
58
+ uses: actions/checkout@v4
59
60
+ - name: Setup flyctl
61
+ uses: superfly/flyctl-actions/setup-flyctl@master
62
63
+ - name: Deploy to Fly.io
64
+ run: flyctl deploy --remote-only
65
+ working-directory: mesher/landing
66
+ env:
67
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
0 commit comments