From 3b6cf7e7c34177757cb5516752c00b111898227f Mon Sep 17 00:00:00 2001 From: ross-weir <29697678+ross-weir@users.noreply.github.com> Date: Sun, 21 Jan 2024 15:40:57 +1100 Subject: [PATCH] fix error if wasm-pack already installed --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 513a496..03f8271 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,7 +27,7 @@ jobs: target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Install wasm-pack - run: cargo install wasm-pack + run: cargo install wasm-pack || true - name: Setup Node.js 16.x uses: actions/setup-node@v3 with: