Template
1
0
Fork 0
This commit is contained in:
Atridad Lahiji 2024-10-19 22:24:02 -06:00
parent dc1f723aa7
commit 3cbd0d1806
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438
2 changed files with 19 additions and 5 deletions

16
.github/workflows/fly-deploy.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: Fly Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

View file

@ -1,10 +1,10 @@
# fly.toml app configuration file generated for atridotdad on 2024-10-16T05:53:09Z
# fly.toml app configuration file generated for atridotdad on 2024-10-19T22:21:23-06:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'atridotdad'
primary_region = 'yyz'
primary_region = 'sea'
[build]
@ -17,6 +17,4 @@ primary_region = 'yyz'
processes = ['app']
[[vm]]
memory = '256mb'
cpu_kind = 'shared'
cpus = 1
size = 'shared-cpu-1x'