We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b41a85f + f229dec commit 16c17a8Copy full SHA for 16c17a8
.github/workflows/heroku.yml
@@ -0,0 +1,28 @@
1
+name: Deploy working development app to Heroku staging project
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'develop'
7
8
+env:
9
+ HEROKU_USER: 32dd7c8d-eb68-4420-bfe2-9ed047ef8fb0
10
+ HEROKU_SECRET: ${{ secrets.heroku_secret_key }}
11
+ HEROKU_APP: cfp-ci-chime
12
+ HEROKU_EMAIL: [email protected]
13
14
+jobs:
15
+ deploy-heroku-stg:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Deploy app
20
+ id: deploy_stg_job
21
+ uses: akhileshns/[email protected]
22
+ with:
23
+ heroku_api_key: ${HEROKU_SECRET}
24
+ heroku_app_name: ${HEROKU_APP}
25
+ heroku_email: ${HEROKU_EMAIL}
26
+ - name: Return app URL
27
+ run: |
28
+ echo "Deployed to: https://${HEROKU_APP}.herokuapp.com/"
0 commit comments