Skip to content

Add native binaries to release #12

Add native binaries to release

Add native binaries to release #12

Workflow file for this run

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
uses: actions/setup-node@v4
with:
node-version: latest
- 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