3.2.3 Fix prebuilt binaries for Node 22 on Windows #31
Workflow file for this run
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
# This workflow will prebuild native binaries for supported NodeJS versions, and add them to the Github release that triggered the workflow | |
name: Add native binaries to release | |
on: | |
release: | |
types: [created] | |
jobs: | |
augment-release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 22.2] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Add msbuild to PATH | |
if: matrix.os == 'windows-latest' | |
uses: microsoft/[email protected] | |
- name: patch node gyp on windows to support Visual Studio 2019 | |
if: matrix.os == 'windows-latest' | |
shell: powershell | |
run: | | |
npm install --global npm@latest | |
npm install --global node-gyp@latest | |
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"} | |
- name: build using node-pre-gyp | |
run: | | |
npm install --build-from-source | |
./node_modules/.bin/node-pre-gyp package | |
- name: Upload native binaries for Node ${{ matrix.node-version }} for ${{ matrix.os }} | |
uses: csexton/release-asset-action@v2 | |
with: | |
pattern: "build/stage/*.tar.gz" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
release-url: ${{ github.event.release.upload_url }} |