Skip to content

v0.20.0

v0.20.0 #2

Workflow file for this run

# Publish a package to npm when a tag starting with "v" is pushed to remote.
# Currently, only npm supports publishing packages with provenance
# https://docs.npmjs.com/generating-provenance-statements
name: Publish to NPM
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
# The Node.js action is required to use npm.
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.3
- name: Install dependencies
run: bun install
- name: Build package
run: bun run build
- name: Publish package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: npm publish --provenance --access public