Skip to content

fix: v2.6.1 — clean source formatting + fix test-to-example.ts JSDoc … #7

fix: v2.6.1 — clean source formatting + fix test-to-example.ts JSDoc …

fix: v2.6.1 — clean source formatting + fix test-to-example.ts JSDoc … #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
draft: false
prerelease: ${{ contains(github.ref, '-alpha') || contains(github.ref, '-beta') || contains(github.ref, '-rc') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}