We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ad98f6 commit 64afcb8Copy full SHA for 64afcb8
.github/workflows/fly-deploy.yml
@@ -0,0 +1,18 @@
1
+# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
2
+
3
+name: Fly Deploy
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+jobs:
9
+ deploy:
10
+ name: Deploy app
11
+ runs-on: ubuntu-latest
12
+ concurrency: deploy-group # optional: ensure only one action runs at a time
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: superfly/flyctl-actions/setup-flyctl@master
16
+ - run: flyctl deploy --remote-only
17
+ env:
18
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
Dockerfile
@@ -1,4 +1,5 @@
FROM node:18-alpine
+RUN apk add --no-cache openssl
EXPOSE 3000
README.md
0 commit comments