mirror of https://github.com/Xhofe/alist
ci: set changelog for beta release
parent
e1906c9312
commit
e5fe9ea5f6
|
@ -0,0 +1,36 @@
|
|||
name: beta release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'main' ]
|
||||
|
||||
jobs:
|
||||
release:
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [ ubuntu-latest ]
|
||||
go-version: [ '1.21' ]
|
||||
name: Beta Release Changelog
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: changelog # or changelogithub@0.12 if ensure the stable result
|
||||
id: changelog
|
||||
run: |
|
||||
git tag -l
|
||||
npx changelogen@latest --output CHANGELOG.md
|
||||
# env:
|
||||
# GITHUB_TOKEN: ${{secrets.MY_TOKEN}}
|
||||
|
||||
- name: Prerelease
|
||||
uses: tubone24/update_release@master
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.MY_TOKEN }}
|
||||
TAG_NAME: beta
|
||||
with:
|
||||
prerelease: true
|
||||
body_path: CHANGELOG.md
|
Loading…
Reference in New Issue