Skip to content

v0.4.1

v0.4.1 #29

Workflow file for this run

---
name: Publish to JSR
on:
release:
types: [published]
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
- name: Set Package Version
run: |
TAG_NAME="${{ github.event.release.tag_name }}"
VERSION=${TAG_NAME#v}
sed -i "s/\"version\": \".*\"/\"version\": \"$VERSION\"/" "package.json"
sed -i "s/\"version\": \".*\"/\"version\": \"$VERSION\"/" "deno.jsonc"
- 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: Ensure Current Branch is main
run: |
if [ "$BRANCH_NAME" != "main" ]; then
echo "Not on main branch, exiting."
exit 1
fi
- name: Publish to JSR
run: pnpm dlx jsr publish --allow-dirty