Add native binaries to release #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add native binaries to release | |
on: | |
push: | |
tags: ['*'] | |
workflow_dispatch: | |
jobs: | |
prebuild: | |
name: ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ alpine-latest, ubuntu-latest, macos-latest, windows-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use nodejs LTS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts | |
- name: Add msbuild to PATH | |
if: matrix.os == 'windows-latest' | |
uses: microsoft/[email protected] | |
- name: Install node-gyp | |
if: matrix.os == 'windows-latest' | |
run: | | |
npm install --global node-gyp@latest | |
- name: Install build deps | |
if: matrix.os == 'alpine-latest' | |
run: | | |
apk add g++ make python3 | |
- name: Dependencies | |
run: | | |
npm install --ignore-scripts | |
- name: Build | |
run: | | |
npm run prebuild --target 18.0.0 | |
npm run prebuild --target 20.0.0 | |
npm run prebuild --target 22.0.0 | |
- name: Upload | |
run: | | |
npx prebuild --upload ${{ secrets.UPLOAD_TOKEN }} | |
env: | |
MAKEFLAGS: -j4 |