Skip to content

Commit 9f9f8f1

Browse files
authored
Fix web deployment github action (#7467)
I accidentally broke it in #7463 --------- Signed-off-by: Robert Kruszewski <github@robertk.io>
1 parent 5e5475a commit 9f9f8f1

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/web.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
cache-dependency-path: vortex-web/package-lock.json
6060
- run: npm ci
6161
- env:
62-
RUSTFLAGS: --cfg getrandom_backend\"unsupported"
63-
run: npm run wasm
62+
RUSTFLAGS: --cfg getrandom_backend="unsupported"
63+
run: npm run wasm
6464
- run: npm run format:check
6565
- run: npm run lint
6666
- run: npm run typecheck
@@ -87,7 +87,9 @@ jobs:
8787
cache: "npm"
8888
cache-dependency-path: vortex-web/package-lock.json
8989
- run: npm ci
90-
- run: npm run build
90+
- env:
91+
RUSTFLAGS: --cfg getrandom_backend="unsupported"
92+
run: npm run build
9193
- name: Upload build artifact
9294
uses: actions/upload-artifact@v4
9395
with:

0 commit comments

Comments
 (0)