Skip to content

Commit 94a96cf

Browse files
committed
Remove app name from config
1 parent 767ca7d commit 94a96cf

3 files changed

Lines changed: 9 additions & 7 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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ name: Build test
22

33
on:
44
push:
5-
branches-ignore:
6-
- 'main'
5+
branches:
6+
- '**'
7+
- '!main'
78
pull_request:
8-
branches: [ main ]
9+
branches: [ main ]
910

1011
jobs:
1112

.github/workflows/unittests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Unit test
22

33
on:
44
push:
5-
branches-ignore:
6-
- 'main'
5+
branches:
6+
- '**'
7+
- '!main'
78
pull_request:
89
branches: [ main ]
910

0 commit comments

Comments
 (0)