Skip to content

release(v1.7.0): RFC 9457 error optimization with MVI projection engine #28

release(v1.7.0): RFC 9457 error optimization with MVI projection engine

release(v1.7.0): RFC 9457 error optimization with MVI projection engine #28

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org
cache: npm
- run: npm ci
- run: npm run typecheck && npm test && npm run build
- run: npm publish --access public
github-release:
needs: publish
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Extract version
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
name: "Release v${{ steps.get_version.outputs.VERSION }}"
body_path: CHANGELOG.md
prerelease: false
generate_release_notes: true