Skip to content

Commit

Permalink
Fix boolean behaviour.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlion committed Mar 5, 2025
1 parent bbfeff7 commit 2e522ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clp-core-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
--build-dir /mnt/clp/components/core/build
--num-jobs $(getconf _NPROCESSORS_ONLN)
- if: "${{matrix.upload_binaries}} == 'true'"
- if: "${{matrix.upload_binaries}}"
id: "copy_binaries"
run: |-
output_dir="/tmp/${{env.BINARIES_ARTIFACT_NAME_PREFIX}}${{env.OS_NAME}}"
Expand All @@ -233,7 +233,7 @@ jobs:
tar cfvv "${output_dir}/clp.tar" clg clp clp-s glt make-dictionaries-readable
shell: "bash"

- if: "${{matrix.upload_binaries}} == 'true'"
- if: "${{matrix.upload_binaries}}"
uses: "actions/upload-artifact@v4"
with:
name: "${{env.BINARIES_ARTIFACT_NAME_PREFIX}}${{env.OS_NAME}}"
Expand Down

0 comments on commit 2e522ba

Please sign in to comment.