We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5360ad commit 44a2c31Copy full SHA for 44a2c31
1 file changed
.github/workflows/deploy.yaml
@@ -37,8 +37,11 @@ jobs:
37
- name: Checkout code
38
uses: actions/checkout@v2
39
40
- - name: Deploy to Heroku
41
- uses: akhileshns/heroku-deploy@v3.13.15 # This is the action
+ - name: Install Heroku CLI # <- IMPORTANT!!! Make sure the cli is installed before using the action
+ run: |
42
+ curl https://cli-assets.heroku.com/install.sh | sh
43
+
44
+ - uses: akhileshns/heroku-deploy@v3.14.15 # This is the action
45
with:
46
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
47
heroku_app_name: "gh-node-app" #Must be unique in Heroku
0 commit comments