-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e008f1
commit d57c6d7
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,15 +62,15 @@ jobs: | |
# # - keep in mind you also need to configure Heroku HEROKU_API_KEY and HEROKU_EMAIL in GitHub secrets | ||
# # - and replace REPLACE_WITH_YOUR_HEROKU_APP_NAME in this file with the name of your Heroku app | ||
|
||
deploy_heroku: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
deploy_heroku: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: akhileshns/[email protected] # This is the action | ||
with: | ||
heroku_api_key: ${{secrets.5cadb86b-957d-443a-aff0-d42dc124f916}} | ||
heroku_app_name: "firstpack" # Must be unique in Heroku | ||
heroku_email: ${{secrets.[email protected]}} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: akhileshns/[email protected] # This is the action | ||
with: | ||
heroku_api_key: ${{secrets.5cadb86b-957d-443a-aff0-d42dc124f916}} | ||
heroku_app_name: "firstpack" # Must be unique in Heroku | ||
heroku_email: ${{secrets.HEROKU_EMAIL}} | ||
|