fix: docker startup issue, add GitHub release workflow and changelog config

This commit is contained in:
2026-01-25 01:29:13 +00:00
committed by GitHub
parent 995f5406e2
commit b760465f1c
4 changed files with 84 additions and 3 deletions

33
.github/workflows/github-release.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: GitHub Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate changelog
id: changelog
uses: orhun/git-cliff-action@v4
with:
config: cliff.toml
args: --latest --strip header
- name: Create Release
uses: softprops/action-gh-release@v2
with:
body: ${{ steps.changelog.outputs.content }}
draft: false
prerelease: false