Skip to content

Commit b4fb6ea

Browse files
committed
ci: configure Heroku container stack and environment
- Add step to set Heroku stack to container mode - Configure container registry login and deployment - Set up required environment variables for the app
1 parent abbded0 commit b4fb6ea

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/cd.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
2121
run: heroku container:login
2222

23+
- name: Set Heroku stack to container
24+
env:
25+
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
26+
run: heroku stack:set container -a github-commit-monitor
27+
2328
- name: Build and push
2429
env:
2530
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}

0 commit comments

Comments
 (0)