Skip to content

feat(patchlogs): new patchlogs #664

feat(patchlogs): new patchlogs

feat(patchlogs): new patchlogs #664

Workflow file for this run

name: Release
on:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.branch }}
cancel-in-progress: true
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run lint
- run: npm test
release:
name: Release
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
pull-requests: write
issues: write
steps:
- uses: actions/checkout@v6
with:
token: ${{ secrets.GH_TOKEN }}
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- run: npm ci
- name: Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}