mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-06-26 11:49:15 +08:00
27 lines
416 B
YAML
27 lines
416 B
YAML
name: Release
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
node-version: 20.x
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- run: npx changelogithub
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|