Skip to content

chore: release v0.1.0 #12

chore: release v0.1.0

chore: release v0.1.0 #12

Workflow file for this run

name: publish
on:
push:
tags:
- 'v*'
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
run_install: false
- uses: actions/setup-node@v5
with:
cache: pnpm
node-version: latest
registry-url: https://registry.npmjs.org
# npm 11.5.1 or later is required so update to latest to use OIDC trusted publisher
# https://github.com/eslint/config-inspector/pull/174/files
# https://github.com/e18e/ecosystem-issues/issues/201
- run: npm install -g npm@latest
- run: pnpm i
- run: pnpm dlx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: pnpm -r build
- run: pnpm -r publish --no-git-checks --access public