Skip to content

Commit

Permalink
Always run the package step in test-build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanarpit committed Oct 5, 2021
1 parent e302311 commit e1ee9dc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test-build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,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: |
Expand Down Expand Up @@ -157,7 +157,6 @@ jobs:
with:
fetch-depth: 0


# Setup Java
- name: Set up JDK 1.11
uses: actions/setup-java@v1
Expand Down Expand Up @@ -508,7 +507,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
Expand Down

0 comments on commit e1ee9dc

Please sign in to comment.