Skip to content

Commit 2f4a12f

Browse files
committed
Ensure that dylib files are included in prebuilds; Define included files for musl prebuilds
1 parent 582b9d1 commit 2f4a12f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
- name: Prebuild and Publish
3737
shell: bash
38-
run: node ./node_modules/prebuild/bin.js -t ${{ matrix.target }} --strip --include-regex "\.(node|dll)$" -u ${{ secrets.GITHUB_TOKEN }} --verbose
38+
run: node ./node_modules/prebuild/bin.js -t ${{ matrix.target }} --strip --include-regex "\.(node|dylib|dll)$" -u ${{ secrets.GITHUB_TOKEN }} --verbose
3939
- name: Prebuild and Publish (musl)
4040
if: runner.os == 'Linux'
4141
shell: bash
42-
run: node ./node_modules/prebuild/bin.js --libc=musl -t ${{ matrix.target }} --strip -u ${{ secrets.GITHUB_TOKEN }} --verbose
42+
run: node ./node_modules/prebuild/bin.js --libc=musl -t ${{ matrix.target }} --strip --include-regex "\.(node|dylib|dll)$" -u ${{ secrets.GITHUB_TOKEN }} --verbose
4343
- name: Attest
4444
uses: actions/attest-build-provenance@v1
4545
with:

0 commit comments

Comments
 (0)