Skip to content

Commit 44a2c31

Browse files
committed
Updating deploy WF
1 parent e5360ad commit 44a2c31

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,11 @@ jobs:
3737
- name: Checkout code
3838
uses: actions/checkout@v2
3939

40-
- name: Deploy to Heroku
41-
uses: akhileshns/heroku-deploy@v3.13.15 # This is the action
40+
- name: Install Heroku CLI # <- IMPORTANT!!! Make sure the cli is installed before using the action
41+
run: |
42+
curl https://cli-assets.heroku.com/install.sh | sh
43+
44+
- uses: akhileshns/heroku-deploy@v3.14.15 # This is the action
4245
with:
4346
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
4447
heroku_app_name: "gh-node-app" #Must be unique in Heroku

0 commit comments

Comments
 (0)