Skip to content

Commit

Permalink
fix: syntax error in runtime_sub step (#603)
Browse files Browse the repository at this point in the history
Signed-off-by: jiaxiao zhou <jiazho@microsoft.com>
  • Loading branch information
Mossaka authored May 22, 2024
1 parent 68c84aa commit 8b945f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
script: |
const crate = '${{ inputs.crate }}';
const non_shim_crates = ['wasm', 'wasm-test-modules', 'oci-tar-builder'];
if non_shim_crates.includes(runtime) {
if (non_shim_crates.includes(runtime)) {
core.setOutput('runtime', 'common');
core.setOutput('is_shim', false)
} else {
Expand Down

0 comments on commit 8b945f9

Please sign in to comment.