Publish #5
Workflow file for this run
This file contains 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 | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
registry-url: https://registry.npmjs.org | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Update package version to latest tag | |
run: | | |
# Set up git user | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
npm version --allow-same-version from-git | |
git push --follow-tags origin HEAD:main | |
- name: Create jsr.json based on package.json | |
run: | | |
node -e ' | |
const p = require("./package.json"); | |
const jsrJson = { | |
name: `@cheerio/${p.name}`, | |
version: p.version, | |
...p.tshy, | |
}; | |
require("fs").writeFileSync("./jsr.json", JSON.stringify(jsrJson, null, 2)); | |
' | |
- name: Publish package to JSR | |
run: npx jsr publish | |
- name: Publish package to NPM | |
run: npm publish --provenance --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |