From 2be743041eea766da680be8937daa9f726186cfa Mon Sep 17 00:00:00 2001 From: James Little Date: Mon, 17 Jan 2022 13:38:23 -0500 Subject: [PATCH] Update build wasm command in deploy action --- .github/workflows/create-release-after-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release-after-tag.yml b/.github/workflows/create-release-after-tag.yml index 6c4b0d06..d4460cd8 100644 --- a/.github/workflows/create-release-after-tag.yml +++ b/.github/workflows/create-release-after-tag.yml @@ -117,7 +117,7 @@ jobs: use-tool-cache: true - name: Build WASM - run: wasm-pack build --target web --out-name stork -- --no-default-features # just build-wasm + run: cd stork-wasm && wasm-pack build --target web --out-name stork -- --no-default-features --features="v3" # just build-wasm - run: yarn install