v0.0.24 #52
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: CI | |
env: | |
DEBUG: napi:* | |
APP_NAME: bslive | |
MACOSX_DEPLOYMENT_TARGET: '10.13' | |
permissions: | |
contents: write | |
id-token: write | |
on: | |
release: | |
types: [ published ] | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'The branch to run the release from' | |
required: true | |
default: 'main' | |
# pull_request: null | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
settings: | |
- host: macos-latest | |
target: aarch64-apple-darwin | |
build: npm run build -- --target aarch64-apple-darwin | |
name: stable - ${{ matrix.settings.target }} - node@20 | |
runs-on: ${{ matrix.settings.host }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
- name: Set up Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: ${{ matrix.settings.target }} | |
- name: Cache cargo | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
.cargo-cache | |
target/ | |
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: ${{ matrix.settings.build }} | |
shell: bash | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bindings-${{ matrix.settings.target }} | |
path: ${{ env.APP_NAME }}.*.node | |
if-no-files-found: error | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Download all artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: artifacts | |
- name: Move artifacts | |
run: npm run artifacts | |
- name: List packages | |
run: ls -R ./npm | |
shell: bash | |
- name: Publish to Latest | |
if: github.event_name == 'release' && github.event.action == 'published' | |
run: | | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc | |
npm publish --access public | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Publish to Next | |
if: github.event_name == 'workflow_dispatch' | |
run: | | |
# Extract the branch name and create a valid pre-release identifier | |
SHORT_SHA=$(git rev-parse --short=8 HEAD) | |
# Combine base version with pre-release identifier | |
TEMP_VERSION="0.0.0-${SHORT_SHA}" | |
echo "Temporary version: $TEMP_VERSION" | |
# Update npm version without creating a git tag | |
npm version $TEMP_VERSION --no-git-tag-version | |
# Configure npm authentication | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc | |
# Publish to the 'next' tag on npm | |
npm publish --tag next --access public | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |