Skip to content

Commit b4f4aae

Browse files
authored
Update buildbinaryen.yml.
1 parent dea8fd4 commit b4f4aae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/buildbinaryen.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,11 @@ jobs:
8080
- name: Copy to NuGet runtime folder
8181
run: |
8282
mkdir -p package/runtimes/${{ matrix.runtime }}/native
83-
cp -r binaryen/lib/* package/runtimes/${{ matrix.runtime }}/native/
83+
if [[ "${{ matrix.target }}" == "windows" ]]; then
84+
cp -r binaryen/bin/* package/runtimes/${{ matrix.runtime }}/native/
85+
else
86+
cp -r binaryen/lib/* package/runtimes/${{ matrix.runtime }}/native/
87+
fi
8488
shell: bash
8589

8690
- name: Upload artifact

0 commit comments

Comments
 (0)