-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (32 loc) · 1011 Bytes
/
production.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Production Deploy
on:
workflow_run:
workflows: [CI]
types: [completed]
branches: [release]
workflow_dispatch: # manual trigger
jobs:
# runs if CI workflow was successful OR if this was manually triggered
on-success:
runs-on: ubuntu-20.04
if: >
github.event_name == 'workflow_dispatch' ||
github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@v3
with:
ref: release
- uses: akhileshns/heroku-deploy@79ef2ae4ff9b897010907016b268fd0f88561820
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: "mitxonline-production"
heroku_email: ${{ secrets.HEROKU_EMAIL }}
branch: release
# runs ONLY on a failure of the CI workflow
on-failure:
runs-on: ubuntu-20.04
if: >
github.event_name == 'workflow_dispatch' ||
github.event.workflow_run.conclusion == 'failure'
steps:
- run: echo 'The triggering workflow failed'