Skip to content

Increase version number #29

Increase version number

Increase version number #29

Workflow file for this run

name: Publish to JSR
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- run: npm install
- run: |
VERSION=$(cat package.json | jq -r .version)
CONFIG=$(cat jsr.json | jq ". + { \"version\": \"$VERSION\" }")
echo $CONFIG | jq . > jsr.json
npx jsr publish --allow-dirty