Skip to content

Commit 2906ad5

Browse files
committed
Remove app name from config
1 parent 767ca7d commit 2906ad5

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
- run:
2323
name: "Push Docker image to registry"
2424
command: |
25-
heroku container:push web --app=apixhw
25+
heroku container:push web --app=$HEROKU_APP_NAME
2626
- run:
2727
name: "Release image to run"
2828
command: |
29-
heroku container:release web --app=apixhw
29+
heroku container:release web --app=$HEROKU_APP_NAME
3030
3131
workflows:
3232
heroku_deploy:

.github/workflows/buildtest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Build test
33
on:
44
push:
55
branches-ignore:
6-
- 'main'
6+
- 'main'
77
pull_request:
8-
branches: [ main ]
8+
branches: [ main ]
99

1010
jobs:
1111

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Unit test
33
on:
44
push:
55
branches-ignore:
6-
- 'main'
6+
- 'main'
77
pull_request:
88
branches: [ main ]
99

0 commit comments

Comments
 (0)