Skip to content

chore(release): bump version number to v0.3.15 #38

chore(release): bump version number to v0.3.15

chore(release): bump version number to v0.3.15 #38

Workflow file for this run

name: Publish
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # The OIDC ID token is used for authentication with JSR.
steps:
- uses: actions/checkout@v4
- name: Publish to JSR
run: npx jsr publish
- name: Get previous tag
id: prev_tag
run: echo "tag=$(git describe --tags --abbrev=0 $(git rev-list --tags --max-count=2 | tail -n1))" >> $GITHUB_ENV
- name: Get current tag
id: current_tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
# - name: Create GitHub Release