Compare commits
1 Commits
v1.0.1
...
9ed1d4f60e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ed1d4f60e |
@@ -93,12 +93,23 @@ jobs:
|
|||||||
if: startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Generate Changelog
|
||||||
|
run: |
|
||||||
|
# Get commits since the last tag (or since the beginning)
|
||||||
|
git log --oneline $(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || git rev-list --max-parents=0 HEAD)..HEAD > changelog.txt
|
||||||
|
|
||||||
- name: Download Artifacts
|
- name: Download Artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
|
body_path: changelog.txt
|
||||||
files: |
|
files: |
|
||||||
ts3-tui-windows-zip/ts3-tui-windows-x86_64.zip
|
ts3-tui-windows-zip/ts3-tui-windows-x86_64.zip
|
||||||
ts3-tui-linux-binaries/*
|
ts3-tui-linux-binaries/*
|
||||||
|
|||||||
Reference in New Issue
Block a user