We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a1d52 commit 67480f6Copy full SHA for 67480f6
.github/workflows/deploy.yml
@@ -0,0 +1,18 @@
1
+name: Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+jobs:
7
+ deploy:
8
+ name: Deploy Server to Fly.io
9
+ runs-on: ubuntu-latest
10
+ env:
11
+ SQL_GENERATE_URL: ${{ secrets.DATABASE_URL_FOR_PRISMA_SQL_GENERATION }}
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: superfly/flyctl-actions/setup-flyctl@master
15
+ - uses: oven-sh/setup-bun@v2
16
+ with:
17
+ bun-version: 1.2.2
18
+ - run: bun deploy:server --access-token ${{ secrets.FLY_DEPLOY_TOKEN }}
0 commit comments