release: v0.13.0 #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches-ignore: | |
- '**' | |
tags: | |
- 'v*' | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codes | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Enable corepack | |
run: corepack enable | |
- name: Extract version tag | |
if: startsWith( github.ref, 'refs/tags/v' ) | |
uses: jungwinter/split@v2 | |
id: split | |
with: | |
msg: ${{ github.ref }} | |
separator: '/' | |
- name: Create Github Release | |
run: gh release create ${{ steps.split.outputs._2 }} --generate-notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate changelog | |
run: | | |
git restore --source=HEAD --staged --worktree -- package.json bun.lockb | |
bun install | |
npm run build | |
npm run changelog -- --tag=${{ steps.split.outputs._2 }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Commit changelog | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
branch: main | |
file_pattern: '*.md' | |
commit_message: 'chore: sync changelog' | |
- name: Publish package for NPM | |
run: ./scripts/release.sh | |
env: | |
NPM_TOKEN: ${{secrets.NPM_ORG_TOKEN}} | |
- name: Publish package for JSR | |
run: npx jsr publish |