Skip to content

Commit

Permalink
Fix error in cloudcompiler.yaml: fix sed command
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Jul 29, 2022
1 parent 5b12656 commit fee2fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cloudcompiler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
echo $(git tag | tail -n1) > ./version.txt
v=$(git describe --tags --abbrev=0) && \
echo "version = ${v}" &&
sed -i "s/version = \".*\"/${v}/g" target/wasm32-wasi/release/cloudcompiler/wapm.toml \
sed -i "s/version = \".*\"/version = \"${v}\"/g" target/wasm32-wasi/release/cloudcompiler/wapm.toml \
- name: Build cloudcompiler.wasm
shell: bash
run: |
Expand Down

0 comments on commit fee2fba

Please sign in to comment.