2023-01-10 09:01:50 +00:00
|
|
|
name: Release
|
|
|
|
|
2023-01-13 11:54:59 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2023-01-10 09:01:50 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-29 17:54:45 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-01-10 09:01:50 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set node
|
2023-12-05 10:18:19 +00:00
|
|
|
uses: actions/setup-node@v4
|
2023-01-10 09:01:50 +00:00
|
|
|
with:
|
|
|
|
node-version: 18
|
|
|
|
|
|
|
|
- run: npx changelogithub
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|