Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
fix publish ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ellyofreitas committed Sep 21, 2023
1 parent 93db4ba commit bc70a17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prebuild-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
run: npm run apply-patches
- name: Build unix binaries 32 bits
if: matrix.os != 'macos'
run: npm run prebuild -- --strip -t 18.0.0 --arch ia32
run: npm run prebuild -- --strip --arch ia32
- name: Build unix binaries 64 bits
run: npm run prebuild -- --strip -t 18.0.0 --arch x64
run: npm run prebuild -- --strip --arch x64
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
run: npm run apply-patches
- name: Build ${{ matrix.os }} binaries 32 bits
if: matrix.os != 'macos'
run: npm run prebuild -- --strip -t 18.0.0 --arch ia32
run: npm run prebuild -- --strip --arch ia32
- name: Build ${{ matrix.os }} binaries 64 bits
run: npm run prebuild -- --strip -t 18.0.0 --arch x64
run: npm run prebuild -- --strip --arch x64
- name: Upload ${{ matrix.os }} binaries
run: gh release upload ${{ github.event.release.tag_name }} prebuilds/**/*.tar.gz
env:
Expand Down

0 comments on commit bc70a17

Please sign in to comment.