chore: release v1.0.2 #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This action will publish the package to npm and create a GitHub release. | |
| # Ref: https://docs.npmjs.com/trusted-publishers/ | |
| name: Release | |
| on: | |
| # Run `npm run bump` to bump the version and create a git tag. | |
| push: | |
| tags: | |
| - "v*" | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| environment: npm | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| # Update npm to the latest version to enable OIDC | |
| # Use corepack to install pnpm | |
| - name: Setup Package Managers | |
| run: | | |
| npm install -g npm@latest | |
| npm --version | |
| npm install -g corepack@latest --force | |
| corepack enable | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Publish | |
| uses: JS-DevTools/npm-publish@v3 | |
| with: | |
| token: empty | |
| - name: Create GitHub Release | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| generateReleaseNotes: "true" |