Skip to content

Commit 6864c83

Browse files
committed
Fix YAML indentation for WASM action
1 parent 4657236 commit 6864c83

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release-wasm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- name: Build WASM
1515
run: |
1616
rustup target add wasm32-wasip1
17-
cargo build --release --target wasm32-wasip1
18-
find target/wasm32-wasip1/release -maxdepth 1 -name "*.wasm" -exec cp {} cdd-rust.wasm \;
19-
if [ ! -f cdd-rust.wasm ]; then echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-rust.wasm; fi
17+
cargo build --release --target wasm32-wasip1
18+
find target/wasm32-wasip1/release -maxdepth 1 -name "*.wasm" -exec cp {} cdd-rust.wasm \;
19+
if [ ! -f cdd-rust.wasm ]; then echo -n -e '\x00asm\x01\x00\x00\x00' > cdd-rust.wasm; fi
2020
- name: Release WASM Artifact
2121
uses: softprops/action-gh-release@v2
2222
with:

0 commit comments

Comments
 (0)