diff --git a/.github/workflows/api-deploy.yml b/.github/workflows/api-deploy.yml index 98b5b8b0..26c91425 100644 --- a/.github/workflows/api-deploy.yml +++ b/.github/workflows/api-deploy.yml @@ -6,6 +6,7 @@ on: - feature/db-config - main - develop + - fix/#147 env: DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} @@ -46,8 +47,6 @@ jobs: echo "${{ secrets.APPLICATION_CORE }}" > ./application/src/main/resources/application-core.yml mkdir -p ./adapters/in-web/src/main/resources echo "${{ secrets.APPLICATION_IN_WEB_YML }}" > ./application/src/main/resources/application-in-web.yml - mkdir -p ./adapters/in-batch/src/main/resources - echo "${{ secrets.APPLICATION_IN_BATCH }}" > ./application/src/main/resources/application-in-batch.yml - name: Build with Gradle run: ./gradlew :entry:web:build --no-daemon diff --git a/.github/workflows/batch-deploy.yml b/.github/workflows/batch-deploy.yml index f3e95f06..5a4e84d2 100644 --- a/.github/workflows/batch-deploy.yml +++ b/.github/workflows/batch-deploy.yml @@ -5,6 +5,7 @@ on: branches: - main - develop + - fix/#147 paths: - 'adapters/in-batch/**' @@ -46,7 +47,7 @@ jobs: mkdir -p ./application/src/main/resources echo "${{ secrets.APPLICATION_CORE }}" > ./application/src/main/resources/application-core.yml mkdir -p ./adapters/in-batch/src/main/resources - echo "${{ secrets.APPLICATION_IN_BATCH_YML }}" > ./application/src/main/resources/application-in-batch.yml + echo "${{ secrets.APPLICATION_IN_BATCH_YML }}" > ./adapters/in-batch/src/main/resources/application-in-batch.yml - name: Build with Gradle run: ./gradlew :entry:batch:build --no-daemon