Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ jobs:
wheel_docker.tar.gz
source.tar.gz
tag_name: ${{ env.VERSION_NUMBER }}
# without this, the GitHub API creates a brand-new tag against the
# repository's default branch (main) regardless of which branch this
# workflow actually ran on - a maintenance/beta build's tag would
# silently point at main instead of its own branch.
target_commitish: ${{ github.sha }}
name: "${{ env.TITLE_PREFIX }} ${{ env.VERSION_NUMBER }}"
body: "release for ${{ github.ref_name }} @ ${{ github.sha }} (${{ env.VERSION_NUMBER }})"
# only the main line ever takes the "Latest" badge and the
Expand Down
Loading