-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚚 Install Heroku CLI on deploy action (#6056)
Github Actions have been updating their image from Ubuntu 22 to Ubuntu 24, and this action doesn't contain the Heroku CLI by default, so we have to install it before being able to run it. More info: AkhileshNS/heroku-deploy#184 **How to test** * We'll have to approve the PR and test if the action works.
- Loading branch information
Showing
2 changed files
with
8 additions
and
2 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 |
---|---|---|
|
@@ -14,7 +14,10 @@ jobs: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: 'Install Heroku CLI' | ||
run: curl https://cli-assets.heroku.com/install.sh | sh | ||
- uses: akhileshns/[email protected] # This is the action | ||
with: | ||
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,10 @@ jobs: | |
run: | | ||
echo "You must be Felienne to run this workflow :D" >&2 | ||
exit 1 | ||
- uses: actions/checkout@v4 | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: 'Install Heroku CLI' | ||
run: curl https://cli-assets.heroku.com/install.sh | sh | ||
- uses: akhileshns/[email protected] # This is the action | ||
with: | ||
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | ||
|