Skip to content

Commit

Permalink
Test fix env var assign
Browse files Browse the repository at this point in the history
  • Loading branch information
Zurcusa committed Jun 10, 2024
1 parent b77263d commit cc1f341
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ jobs:
- name: Setup wasmer-jni artifacts dir
shell: bash
run: |
echo "EXT_ARTIFACTS_DIR=$(mktemp -d)" >> $GITHUB_ENV
echo "EXT_ARTIFACTS_DIR=$(echo mktemp -d)" >> $GITHUB_ENV
- name: Download wasmer_jni artifacts
uses: actions/download-artifact@v4
with:
path: ./${{ env.EXT_ARTIFACTS_DIR }}
path: ${{ env.EXT_ARTIFACTS_DIR }}

- name: Display structure of downloaded files
run: ls -R ./$EXT_ARTIFACTS_DIR
run: ls -R $EXT_ARTIFACTS_DIR

- name: Run all the tests
shell: bash
Expand Down

0 comments on commit cc1f341

Please sign in to comment.