Skip to content

build: publish v2.0.0-rc.19 #109

build: publish v2.0.0-rc.19

build: publish v2.0.0-rc.19 #109

Workflow file for this run

name: release
permissions:
contents: write
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Push to release branch
run: git push origin HEAD:release
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
registry-url: https://registry.npmjs.org/
- name: Create release changelog
run: npx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}