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
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,14 @@ jobs:
if: steps.release.outputs.released == 'true'
run: uv build

# Pinned to a commit SHA, not the floating release/v1 tag, so an upstream
# change cannot alter a release with no commit here. v1.14.2 bundles twine
# 7.0.0 and packaging 26.2, which accept the Metadata-Version 2.5 that current
# hatchling emits. v1.14.0 rejected it and broke the openadapt-evals 0.91.0
# publish after the tag had already landed.
- name: Publish to PyPI
if: steps.release.outputs.released == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2

- name: Publish to GitHub Releases
if: steps.release.outputs.released == 'true'
Expand Down
Loading