Skip to content

Commit

Permalink
[GHA] No encapsulation in steps' if
Browse files Browse the repository at this point in the history
Seems to prevent correct boolean execution
  • Loading branch information
RoiArthurB committed Oct 4, 2021
1 parent 062c31a commit 3630bca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-travis.yml
Expand Up @@ -55,14 +55,14 @@ jobs:
echo ${{ env.CONTINUE }}
- name: Make zip file
if: ${{ env.CONTINUE }}
if: env.CONTINUE
shell: bash
run: $GITHUB_WORKSPACE/travis/zip_withjdk.sh
env:
MSG: ${ github.event.head_commit.message }

- uses: actions/upload-artifact@v2
if: ${{ env.CONTINUE }}
if: env.CONTINUE
env:
working_directory: $GITHUB_WORKSPACE/ummisco.gama.product/target/products
with:
Expand All @@ -75,7 +75,7 @@ jobs:

apple-signing:
needs: build
if: ${{ needs.build.outputs.continue_pipeline }}
if: needs.build.outputs.continue_pipeline
runs-on: macos-11.0
steps:
- name: Get every builds
Expand Down

0 comments on commit 3630bca

Please sign in to comment.