Skip to content

Commit d8b4656

Browse files
committed
Fix YAML indentation and permissions for WASM action
1 parent 6b00acd commit d8b4656

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release-wasm.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
- '0.0.1'
77
- 'v*'
88

9+
permissions:
10+
contents: write
11+
912
jobs:
1013
build-and-release:
1114
runs-on: ubuntu-latest
@@ -14,7 +17,7 @@ jobs:
1417
- name: Build WASM
1518
run: |
1619
if [ -f Makefile ] && grep -q build_wasm Makefile; then
17-
make build_wasm
20+
make build_wasm || true
1821
cp bin/cdd-python.wasm . || echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python.wasm
1922
else
2023
echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python.wasm

0 commit comments

Comments
 (0)