Publish to JSR #18
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 to JSR | |
on: | |
workflow_run: | |
workflows: [Set Package Version] | |
types: | |
- completed | |
permissions: | |
contents: read | |
id-token: write # The OIDC ID token is used for authentication with JSR. | |
jobs: | |
publish: | |
name: Publish to JSR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Ensure all branches and tags are fetched | |
- name: Ensure branch is main | |
run: | | |
git fetch origin main | |
git checkout main | |
git pull origin main | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: latest | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
cache-dependency-path: ./pnpm-lock.yaml | |
node-version: lts/* | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Determine Branch | |
run: | |
echo "BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV | |
- name: Publish to JSR | |
run: pnpm dlx jsr publish |