Skip to content

Commit 6b00acd

Browse files
committed
Fix YAML indentation for WASM action
1 parent 0d05914 commit 6b00acd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release-wasm.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
- name: Build WASM
1515
run: |
1616
if [ -f Makefile ] && grep -q build_wasm Makefile; then
17-
make build_wasm
18-
cp bin/cdd-python.wasm . || echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python.wasm
19-
else
20-
echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python.wasm
21-
fi
17+
make build_wasm
18+
cp bin/cdd-python.wasm . || echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python.wasm
19+
else
20+
echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python.wasm
21+
fi
2222
- name: Release WASM Artifact
2323
uses: softprops/action-gh-release@v2
2424
with:

0 commit comments

Comments
 (0)