✨ 更新发布工作流,修正 Liteyuki PyPI 发布令牌为 LITEYUKI_GITEA_TOKEN,新增 Gitea 发布工作流
This commit is contained in:
21
.github/workflows/liteyuki-gitea-release.yaml
vendored
Normal file
21
.github/workflows/liteyuki-gitea-release.yaml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Release to Liteyuki Gitea
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Build Changelog
|
||||
id: github_release
|
||||
uses: mikepenz/release-changelog-builder-action@v5
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Create Release
|
||||
uses: mikepenz/action-gh-release@v0.2.0-a03
|
||||
with:
|
||||
body: ${{steps.github_release.outputs.changelog}}
|
||||
Reference in New Issue
Block a user