Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BFergerson authored Oct 14, 2024
1 parent 7ad6774 commit b7f4f60
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ github.ref_name }}" **/*.dmg **/*.msi **/*.deb -t "${{ github.ref_name }}" --draft --generate-notes
dmg_file=$(ls *.dmg)
msi_file=$(ls *.msi)
deb_file=$(ls *.deb)
gh release create "${{ github.ref_name }}" "$dmg_file" "$msi_file" "$deb_file" -t "${{ github.ref_name }}" --draft --generate-notes

0 comments on commit b7f4f60

Please sign in to comment.