Fly fix
This commit is contained in:
parent
dc1f723aa7
commit
3cbd0d1806
2 changed files with 19 additions and 5 deletions
16
.github/workflows/fly-deploy.yml
vendored
Normal file
16
.github/workflows/fly-deploy.yml
vendored
Normal 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 }}
|
8
fly.toml
8
fly.toml
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue