fix: job conditionals
This commit is contained in:
parent
e58d2ec233
commit
5b1d755670
1 changed files with 2 additions and 4 deletions
6
.github/workflows/server-application.yml
vendored
6
.github/workflows/server-application.yml
vendored
|
@ -122,7 +122,7 @@ jobs:
|
|||
run: yarn test ${{ inputs.package_path }}
|
||||
|
||||
e2e:
|
||||
if: ${{ inputs.run_e2e_test_suite }} == true
|
||||
if: ${{ inputs.run_e2e_test_suite }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: build
|
||||
|
@ -130,8 +130,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- run: ${{ inputs.run_e2e_test_suite }} == true && echo $?
|
||||
|
||||
- name: Cache build
|
||||
id: cache-build
|
||||
uses: actions/cache@v3
|
||||
|
@ -348,7 +346,7 @@ jobs:
|
|||
deploy-worker:
|
||||
needs: [ publish-aws-ecr, publish-docker-hub ]
|
||||
|
||||
if: ${{ inputs.deploy_worker }} == true
|
||||
if: ${{ inputs.deploy_worker }}
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
|
Loading…
Reference in a new issue