Skip to content

Commit 56222f2

Browse files
committed
ci: Detect right artifact on e2e tests2
1 parent 219c397 commit 56222f2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/e2e.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,11 @@ jobs:
6464
- name: Detect runtime path
6565
id: runtime
6666
run: |
67-
find ./e2e_tests/artifacts
68-
wasm=$(find ./e2e_tests/artifacts -type f -name '*.wasm' | head -n1)
67+
find ./artifacts
68+
wasm=$(find ./artifacts -type f -name '*.wasm' | head -n1)
6969
echo "Found runtime wasm: $wasm"
7070
echo "wasm_path=$wasm" >> $GITHUB_OUTPUT
71+
working-directory: ./e2e_tests
7172

7273
- name: Use Node.js
7374
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)