Staging heroku auto deployment #566
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Staging heroku auto deployment | |
# When this action will be executed | |
on: | |
workflow_run: | |
workflows: [ "Run test suite" ] | |
branches: [ master ] | |
types: [ completed ] | |
# Allow manually triggering this workflow by visiting | |
# https://github.com/tablexi/nucore-open/actions/workflows/nucore-heroku-auto-deploy-staging.yml | |
# and clicking "Run Workflow" | |
workflow_dispatch: | |
jobs: | |
deploy-staging-heroku: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: akhileshns/[email protected] | |
with: | |
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | |
heroku_app_name: "nucore-open" | |
heroku_email: "[email protected]" |