Skip to content

chore: release v1.4.0 with OIDC improvements and documentation updates #11

chore: release v1.4.0 with OIDC improvements and documentation updates

chore: release v1.4.0 with OIDC improvements and documentation updates #11

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js 22.x
uses: actions/setup-node@v6
with:
node-version: 22.x
registry-url: https://registry.npmjs.org
cache: npm
- name: Install dependencies
run: npm install
- name: Type check
run: npm run type-check
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Publish to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true