File tree Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 7
7
- develop
8
8
jobs :
9
9
deploy :
10
- name : Deploy projects-refresh-service app
10
+ name : Deploy pro app
11
11
runs-on : ubuntu-latest
12
- concurrency : projects-refresh # optional: ensure only one action runs at a time
12
+ concurrency : pro-deploy # optional: ensure only one action runs at a time
13
13
steps :
14
14
- uses : actions/checkout@v4
15
15
- uses : superfly/flyctl-actions/setup-flyctl@master
16
- - run : flyctl deploy --remote-only --config fly-projects-refresh-service .toml --image-label latest
16
+ - run : flyctl deploy --remote-only --config fly-pro .toml
17
17
18
18
env :
19
- FLY_API_TOKEN : ${{ secrets.FLYIO_PROJECTS_REFRESH_SVC_TOKEN }}
19
+ FLY_API_TOKEN : ${{ secrets.FLYIO_PRO_TOKEN }}
Original file line number Diff line number Diff line change
1
+ # See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
2
+
3
+ name : Deploy projects-refresh-service
4
+ on :
5
+ push :
6
+ branches :
7
+ - develop
8
+ jobs :
9
+ deploy :
10
+ name : Deploy projects-refresh-service app
11
+ runs-on : ubuntu-latest
12
+ concurrency : projects-refresh # 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 --config fly-projects-refresh-service.toml --image-label latest
17
+
18
+ env :
19
+ FLY_API_TOKEN : ${{ secrets.FLYIO_PROJECTS_REFRESH_SVC_TOKEN }}
You can’t perform that action at this time.
0 commit comments