Skip to content

Commit

Permalink
release.yml - Update Create GitHub Release step
Browse files Browse the repository at this point in the history
  • Loading branch information
Pulimet committed Jul 23, 2024
1 parent 2c9e5c6 commit 88f9a96
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,12 @@ jobs:
draft: false # Specifies that the release is not a draft
prerelease: false # Specifies that the release is not a prerelease

- name: Upload Release Asset
uses: softprops/action-gh-release@v2 # Uses the softprops action to upload the release asset
- name: Create GitHub Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ env.VERSION }} # Tag name for the release, using the version input
name: Release v${{ env.VERSION }} # Name of the release, using the version input
files: ./ADBugger-${{ env.VERSION }}.dmg # Path to the DMG file
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Uses the GitHub token to authenticate

0 comments on commit 88f9a96

Please sign in to comment.