publish #2
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
| # Publishes to npm when a GitHub Release is published. | |
| # | |
| # Uses npm Trusted Publishing (OIDC) — no token/secret to manage or rotate. | |
| # One-time setup: | |
| # 1. On https://www.npmjs.com/package/anbani-textart/access add a trusted publisher: | |
| # GitHub repository "Anbani/TextArt", workflow "publish.yml", | |
| # environment left blank. | |
| # 2. Create a GitHub Release to trigger this workflow. | |
| # | |
| # `npm publish` runs the `prepublishOnly` script first, which rebuilds the | |
| # dist/ bundle and runs the test suite, so a stale bundle can never ship. | |
| # Trusted publishing also attaches build provenance automatically. | |
| name: publish | |
| on: | |
| release: | |
| types: [published] | |
| # Manual escape hatch: a release whose tag predates a fix to this workflow can't | |
| # be re-run against the fixed version, since the release event replays the | |
| # workflow file as it existed at the tag. Dispatch from the default branch instead. | |
| workflow_dispatch: | |
| jobs: | |
| npm: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write # required for trusted publishing (OIDC) | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| registry-url: "https://registry.npmjs.org" | |
| # Node 22 ships npm 10; OIDC trusted publishing needs npm >= 11.5.1. | |
| # npm 12 requires Node >= 22.22, so the runner must not be pinned below that. | |
| - run: npm install -g npm@latest | |
| - run: npm install | |
| - run: npm publish |