File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 55 - release
66
77env :
8- FLY_TOKEN : ${{ secrets.FLY_ACCESS_TOKEN }}
8+ FLY_PROD_TOKEN : ${{ secrets.FLY_ACCESS_TOKEN }}
99jobs :
1010 deploy :
11+ name : Production
1112 runs-on : ubuntu-latest
1213 steps :
1314 - uses : actions/checkout@v4
1415 - uses : superfly/flyctl-actions/setup-flyctl@master
15- - run : flyctl deploy --access-token "$FLY_TOKEN " --config ./fly/prod.toml
16+ - run : flyctl deploy --access-token "$FLY_PROD_TOKEN " --config ./fly/prod.toml
Original file line number Diff line number Diff line change 55 - main
66
77env :
8- FLY_TOKEN : ${{ secrets.FLY_ACCESS_TOKEN }}
8+ FLY_STAGING_TOKEN : ${{ secrets.FLY_STAGING_TOKEN }}
99jobs :
1010 deploy :
11+ name : Staging
1112 runs-on : ubuntu-latest
1213 steps :
1314 - uses : actions/checkout@v4
1415 - uses : superfly/flyctl-actions/setup-flyctl@master
15- - run : flyctl deploy --access-token "$FLY_TOKEN " --config ./fly/staging.toml
16+ - run : flyctl deploy --access-token "$FLY_STAGING_TOKEN " --config ./fly/staging.toml
You can’t perform that action at this time.
0 commit comments