From 94a96cf1ba4eb769fea3ab2fcd86297eb3b29b7d Mon Sep 17 00:00:00 2001 From: Ailton Caetano Date: Sun, 27 Mar 2022 02:17:07 -0300 Subject: [PATCH] Remove app name from config --- .circleci/config.yml | 4 ++-- .github/workflows/buildtest.yml | 7 ++++--- .github/workflows/unittests.yml | 5 +++-- 3 files changed, 9 insertions(+), 7 deletions(-) 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 ]