Skip to content

Commit

Permalink
Update GitHub Actions workflow for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjaeon committed Dec 6, 2024
1 parent fc70371 commit 629cf68
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create GitHub Release
uses: softprops/action-gh-release@v1
- name: Create and Upload GitHub Release
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: Release of version ${{ github.ref_name }}
files: |
build/*.exe
build/*.AppImage
Expand All @@ -41,5 +45,7 @@ jobs:
build/*.dmg
build/*.zip
build/*.tar.gz
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 629cf68

Please sign in to comment.