chore: release v0.0.8 #9
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
| name: Release | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| sparse-checkout-cone-mode: false | |
| sparse-checkout: | | |
| /* | |
| !/.specstory/ | |
| - name: Set node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - run: pnpm install | |
| - name: Build Packages | |
| run: pnpm run build | |
| - name: Set publishing config | |
| run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}" | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
| - name: Publish Packages | |
| run: pnpm -r publish --access public --no-git-checks | |
| env: | |
| NPM_CONFIG_PROVENANCE: false | |
| changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| sparse-checkout-cone-mode: false | |
| sparse-checkout: | | |
| /* | |
| !/.specstory/ | |
| - name: Set node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| - run: npx changelogithub | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |