Skip to content

v0.6.0

v0.6.0 #12

Workflow file for this run

name: Publish
on:
release:
types: [published]
concurrency:
group: publish
cancel-in-progress: false
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Verify tag ref
run: |
if [[ "${GITHUB_REF}" != refs/tags/* ]]; then
echo "Publish must be triggered from a tag ref, got: ${GITHUB_REF}"
exit 1
fi
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
with:
node-version: "24"
registry-url: https://registry.npmjs.org
- run: bun install
- run: npm publish --access public