From 9381b4e8fbd99032dad1c77af4e213193a25743c Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Tue, 5 Oct 2021 12:47:05 +0530 Subject: [PATCH] Always run the package step in test-build workflow --- .github/workflows/test-build-docker-image.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-build-docker-image.yml b/.github/workflows/test-build-docker-image.yml index dab59411c4..30271f09bf 100644 --- a/.github/workflows/test-build-docker-image.yml +++ b/.github/workflows/test-build-docker-image.yml @@ -133,8 +133,8 @@ jobs: buildServer: defaults: - run: - working-directory: app/server + run: + working-directory: app/server runs-on: ubuntu-latest # Only run this workflow for internally triggered events if: | @@ -162,7 +162,6 @@ jobs: with: fetch-depth: 0 - # Setup Java - name: Set up JDK 1.11 uses: actions/setup-java@v1 @@ -513,7 +512,7 @@ jobs: # Run this job irrespective of tests failing, if this is the release branch; or only if the tests pass, if this is the master branch. #if: (success() && github.ref == 'refs/heads/master') || github.ref == 'refs/heads/release' - if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release' + if: always() && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release') steps: # Checkout the code