diff --git a/.circleci/config.yml b/.circleci/config.yml index 9d51255..900947a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,11 +22,11 @@ jobs: - run: name: "Push Docker image to registry" command: | - heroku container:push web --app=apixhw + heroku container:push web --app=$HEROKU_APP_NAME - run: name: "Release image to run" command: | - heroku container:release web --app=apixhw + heroku container:release web --app=$HEROKU_APP_NAME workflows: heroku_deploy: diff --git a/.github/workflows/buildtest.yml b/.github/workflows/buildtest.yml index ea80e9c..76ba80f 100644 --- a/.github/workflows/buildtest.yml +++ b/.github/workflows/buildtest.yml @@ -2,10 +2,11 @@ name: Build test on: push: - branches-ignore: - - 'main' + branches: + - '**' + - '!main' pull_request: - branches: [ main ] + branches: [ main ] jobs: diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index a6c3e33..ea10402 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -2,8 +2,9 @@ name: Unit test on: push: - branches-ignore: - - 'main' + branches: + - '**' + - '!main' pull_request: branches: [ main ]