Skip to content

Commit 8e84ede

Browse files
committed
install heroku-cli before deploy step
1 parent e08c52c commit 8e84ede

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/deploy-to-dev.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3
17+
- name: Install Heroku CLI
18+
run: curl https://cli-assets.heroku.com/install.sh | sh
1719
- uses: akhileshns/heroku-deploy@v3.15.15
1820
with:
1921
heroku_api_key: ${{secrets.HEROKU_AUTH_TOKEN}}

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- uses: actions/checkout@v3
42+
- name: Install Heroku CLI
43+
run: curl https://cli-assets.heroku.com/install.sh | sh
4244
- uses: akhileshns/heroku-deploy@v3.15.15
4345
with:
4446
heroku_api_key: ${{secrets.HEROKU_AUTH_TOKEN}}

0 commit comments

Comments
 (0)