Skip to content

Commit

Permalink
directly publish releases
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunicorn committed Jan 31, 2025
1 parent b625165 commit 940bbb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/deploy-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,9 @@ jobs:
uses: softprops/action-gh-release@v2
with:
# publish this nightly release now
draft: true
draft: false
generate_release_notes: false
name: Nightly ${{ needs.tags.outputs.tag }}
tag_name: nightly-${{ needs.tags.outputs.tag }}
body_path: CHANGELOG.md
prerelease: true
- uses: eregon/publish-release@v1
with:
release_id: ${{ steps.create_release.outputs.id }}
7 changes: 2 additions & 5 deletions .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -488,14 +488,11 @@ jobs:
id: create_release
uses: softprops/action-gh-release@v2
with:
draft: true
# publish this full release now
draft: false
generate_release_notes: false
name: "${{ needs.tags.outputs.release_title_prefix }} ${{ needs.tags.outputs.tag }}"
tag_name: ${{ needs.tags.outputs.tag }}
body_path: CHANGELOG.md
prerelease: false
files: CHANGELOG.md
- uses: eregon/publish-release@v1
# publish this full release now
with:
release_id: ${{ steps.create_release.outputs.id }}

0 comments on commit 940bbb9

Please sign in to comment.