Github packages publish #22
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
name: Github packages publish | |
on: workflow_dispatch | |
jobs: | |
publish: | |
runs-on: ${{ matrix.platforms }} | |
strategy: | |
matrix: | |
platforms: [ ubuntu-20.04, windows-2019, macos-12, macos-14 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- run: npm install --ignore-scripts | |
- run: npx @mapbox/node-pre-gyp configure | |
- run: npx @mapbox/node-pre-gyp build -j max | |
- run: npm test | |
- run: npx @mapbox/node-pre-gyp package | |
- run: npx @mmomtchev/node-pre-gyp-github publish | |
env: | |
NODE_PRE_GYP_GITHUB_TOKEN: ${{ secrets.NODE_PRE_GYP_GITHUB_TOKEN }} |