Skip to content

Commit

Permalink
[GHA] Manual check bool condition
Browse files Browse the repository at this point in the history
If true == true...
  • Loading branch information
RoiArthurB committed Oct 4, 2021
1 parent 3630bca commit 0d6b74a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-travis.yml
Expand Up @@ -55,7 +55,7 @@ jobs:
echo ${{ env.CONTINUE }}
- name: Make zip file
if: env.CONTINUE
if: env.CONTINUE == 'true'
shell: bash
run: $GITHUB_WORKSPACE/travis/zip_withjdk.sh
env:
Expand All @@ -75,7 +75,7 @@ jobs:

apple-signing:
needs: build
if: needs.build.outputs.continue_pipeline
if: needs.build.outputs.continue_pipeline == 'true'
runs-on: macos-11.0
steps:
- name: Get every builds
Expand Down

0 comments on commit 0d6b74a

Please sign in to comment.