Skip to content

bumped docs versin

bumped docs versin #4

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*.*.*" # Matches tags like vx.y.z (e.g., v1.0.0)
jobs:
publish:
name: Publish JSR Package
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
- run: npx jsr publish
release:
name: Create GitHub Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create a Release
uses: elgohr/Github-Release-Action@v5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: ${{ github.ref_name }}
tag: ${{ github.ref_name }}