Skip to content

Commit

Permalink
Reworked how github release is made
Browse files Browse the repository at this point in the history
  • Loading branch information
mpasson committed Feb 27, 2024
1 parent a2c40f9 commit 4e62af9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ jobs:
run: |
git fetch --tags --force
git tag -l --format='%(contents:subject)' > release_notes.md
gh release create ${{ github.ref }} --title ${{ github.ref_name }} --notes-file release_notes.md
gh release upload ${{ github.ref }} dist/*
gh release create ${{ github.ref }} --title ${{ github.ref_name }} --notes-file release_notes.md --draft
gh release upload ${{ github.ref }} dist/*
gh release edit ${{ github.ref }} --draft=false

0 comments on commit 4e62af9

Please sign in to comment.