Merge pull request #123 from alexdln/nic-112 #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
| name: Publish @nimpl/cache | |
| on: | |
| push: | |
| tags: | |
| - nimpl/cache@* | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: olegtarasov/[email protected] | |
| id: tagName | |
| with: | |
| tagRegex: "nimpl/cache@(?<version>.*)" | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Install deps and Build package | |
| run: | | |
| pnpm install | |
| pnpm run build | |
| cp ../../LICENSE . | |
| working-directory: ./packages/cache | |
| - name: Publish on main | |
| if: "!contains(github.ref_name, 'canary')" | |
| run: | | |
| npm set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}} | |
| npm version --no-git-tag-version ${{steps.tagName.outputs.version}} | |
| npm publish --access public | |
| working-directory: ./packages/cache | |
| - name: Publish on canary | |
| if: contains(github.ref_name, 'canary') | |
| run: | | |
| npm set //registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}} | |
| npm version --no-git-tag-version ${{steps.tagName.outputs.version}} | |
| npm publish --tag canary --access public | |
| working-directory: ./packages/cache |