Skip to content

Commit abbded0

Browse files
committed
ci: fix Heroku CLI installation in GitHub Actions workflow
- Add explicit Heroku CLI installation step before login - Update container registry login and push commands - Configure environment variables for Heroku app
1 parent d5d3729 commit abbded0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313

14+
- name: Install Heroku CLI
15+
run: |
16+
curl https://cli-assets.heroku.com/install.sh | sh
17+
1418
- name: Login to Heroku Container Registry
1519
env:
1620
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}

0 commit comments

Comments
 (0)