Skip to content

Commit

Permalink
fix(ci): check inputs.wasm-opt value (#42)
Browse files Browse the repository at this point in the history
Input booleans in github actions are not actually booleans :(
  • Loading branch information
flrgh authored Nov 25, 2024
1 parent 229e6f4 commit ab2c555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
rustup update
- name: build wasm-opt
if: steps.toolchain-cache.outputs.cache-hit != 'true' && inputs.wasm-opt == true
if: steps.toolchain-cache.outputs.cache-hit != 'true' && inputs.wasm-opt == 'true'
shell: bash
run: |
cargo install wasm-opt

0 comments on commit ab2c555

Please sign in to comment.