Skip to content

Commit

Permalink
improvements: GH release changelog (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mersho authored Sep 25, 2024
1 parent d013597 commit 704b6d4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ jobs:
mkdir -p bin
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o bin/FileBox-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.extension }} ./main.go
- name: Create changelog text
if: startsWith(github.ref, 'refs/tags/')
id: changelog
uses: loopwerk/tag-changelog@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Release Asset
if: startsWith(github.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v2
Expand All @@ -64,3 +71,4 @@ jobs:
asset_name: FileBox-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.extension }}
tag: ${{ github.ref }}
overwrite: true
body: ${{ steps.changelog.outputs.changes }}

0 comments on commit 704b6d4

Please sign in to comment.