Skip to content

Commit

Permalink
ci: update wasm32-wasi target names (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn authored May 7, 2024
1 parent 491d3aa commit 1a9f66d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
target: aarch64-pc-windows-msvc
build: pnpm build --target aarch64-pc-windows-msvc
- host: ubuntu-latest
target: wasm32-wasi-preview1-threads
build: pnpm build --target wasm32-wasi-preview1-threads
target: wasm32-wasip1-threads
build: pnpm build --target wasm32-wasip1-threads
name: stable - ${{ matrix.settings.target }} - node@20
runs-on: ${{ matrix.settings.host }}
steps:
Expand Down Expand Up @@ -116,15 +116,15 @@ jobs:
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v4
if: matrix.settings.target != 'wasm32-wasi-preview1-threads'
if: matrix.settings.target != 'wasm32-wasip1-threads'
with:
name: bindings-${{ matrix.settings.target }}
path: "*.node"
if-no-files-found: error

- name: Upload artifact
uses: actions/upload-artifact@v4
if: matrix.settings.target == 'wasm32-wasi-preview1-threads'
if: matrix.settings.target == 'wasm32-wasip1-threads'
with:
name: bindings-${{ matrix.settings.target }}
path: "*.wasm"
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: bindings-wasm32-wasi-preview1-threads
name: bindings-wasm32-wasip1-threads
path: .
- name: List packages
run: ls -R .
Expand Down

0 comments on commit 1a9f66d

Please sign in to comment.