Skip to content

Commit 3510e92

Browse files
committed
fix(e2e): update artifact paths to reflect correct directory structure
1 parent 7d25781 commit 3510e92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/e2e-naga.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
name: build-output
3636
path: |
3737
dist
38-
packages/wasm/pkg
38+
packages/wasm/src/pkg
3939
if-no-files-found: error
4040

4141
e2e:
@@ -79,12 +79,12 @@ jobs:
7979
- name: Restore build artifacts
8080
run: |
8181
mkdir -p dist
82-
mkdir -p packages/wasm/pkg
82+
mkdir -p packages/wasm/src/pkg
8383
if [ -d build-output/dist ]; then
8484
cp -a build-output/dist/. dist/
8585
fi
86-
if [ -d build-output/packages/wasm/pkg ]; then
87-
cp -a build-output/packages/wasm/pkg/. packages/wasm/pkg/
86+
if [ -d build-output/packages/wasm/src/pkg ]; then
87+
cp -a build-output/packages/wasm/src/pkg/. packages/wasm/src/pkg/
8888
fi
8989
rm -rf build-output
9090
- name: Run health check (${{ matrix.network }})

0 commit comments

Comments
 (0)