ci: actually download and publish in js ci #6
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: javascript | |
on: | |
push: | |
branches: | |
- ci | |
- stable | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ${{ matrix.platform.runner }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- runner: windows-latest | |
target: win32-x64 | |
- runner: ubuntu-latest | |
target: linux-x64-gnu | |
#- runner: macos-14 | |
# target: darwin-arm64 | |
#- runner: macos-12 | |
# target: darwin-64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: arduino/setup-protoc@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- run: npm install | |
working-directory: dist/js/publish | |
- run: npx napi build --cargo-cwd=../../.. --platform --release --features=js --strip | |
working-directory: dist/js/publish | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: codemp-js-${{ matrix.platform.target }} | |
path: dist/js/publish/codemp.*.node | |
publish: | |
runs-on: ubuntu-latest | |
needs: [build] | |
steps: | |
# TODO we need index.d.ts and index.js but those get auto generated with napi build | |
# we could upload them from one of the previous runs but its messy, so we'll waste | |
# some github resources and build another time here, discarding the binary | |
- uses: actions/checkout@v4 | |
- uses: arduino/setup-protoc@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- run: npm install | |
working-directory: dist/js/publish | |
- run: npx napi build --cargo-cwd=../../.. --features=js | |
working-directory: dist/js/publish | |
- run: rm codemp.node | |
working-directory: dist/js/publish | |
- run: npx napi create-npm-dir -t . | |
working-directory: dist/js/publish | |
- uses: actions/download-artifact@v4 | |
with: | |
path: artifacts | |
pattern: codemp-js-* | |
- run: npx napi artifacts | |
working-directory: dist/js/publish | |
- run: npx napi prepublish -t . --skip-gh-release | |
working-directory: dist/js/publish | |
- run: npm publish | |
working-directory: dist/js/publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |