We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea8fd4 commit b4f4aaeCopy full SHA for b4f4aae
1 file changed
.github/workflows/buildbinaryen.yml
@@ -80,7 +80,11 @@ jobs:
80
- name: Copy to NuGet runtime folder
81
run: |
82
mkdir -p package/runtimes/${{ matrix.runtime }}/native
83
- cp -r binaryen/lib/* package/runtimes/${{ matrix.runtime }}/native/
+ 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
88
shell: bash
89
90
- name: Upload artifact
0 commit comments