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
4 changes: 4 additions & 0 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
git tag -a "${TAG}" -m "${TAG}"
git push origin "${TAG}"
fi
# Build from the tag so hatch-vcs produces the exact release version.
# (On a manual re-run, main may have advanced past the tag, which would
# otherwise yield a rejected dev/local version like 0.16.2.dev1+g….)
git checkout -q "refs/tags/${TAG}"

- name: Set up conda (conda-build + anaconda-client)
uses: conda-incubator/setup-miniconda@v3
Expand Down