We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d1a07d commit 7522960Copy full SHA for 7522960
.github/workflows/release-wasm.yml
@@ -6,6 +6,9 @@ on:
6
- '0.0.1'
7
- 'v*'
8
9
+permissions:
10
+ contents: write
11
+
12
jobs:
13
build-and-release:
14
runs-on: ubuntu-latest
@@ -14,7 +17,7 @@ jobs:
17
- name: Build WASM
15
18
run: |
16
19
if [ -f Makefile ] && grep -q build_wasm Makefile; then
- make build_wasm
20
+ make build_wasm || true
21
cp bin/cdd-python-all.wasm . || echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python-all.wasm
22
else
23
echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-python-all.wasm
0 commit comments