We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a332b2 commit a9cf443Copy full SHA for a9cf443
1 file changed
.github/workflows/release.yml
@@ -49,8 +49,10 @@ jobs:
49
50
- name: Get the changelog underline
51
id: changelog_underline
52
+ env:
53
+ RELEASE: ${{ steps.calver.outputs.release }}
54
run: |
- underline="$(echo "${{ steps.calver.outputs.release }}" | tr -c '\n' '-')"
55
+ underline="$(echo "$RELEASE" | tr -c '\n' '-')"
56
echo "underline=${underline}" >> "$GITHUB_OUTPUT"
57
58
- name: Update changelog
@@ -95,9 +97,11 @@ jobs:
95
97
body: ${{ steps.tag_version.outputs.changelog }}
96
98
99
- name: Build a binary wheel and a source tarball
100
101
+ NEW_TAG: ${{ steps.tag_version.outputs.new_tag }}
102
103
git fetch --tags
- git checkout ${{ steps.tag_version.outputs.new_tag }}
104
+ git checkout "$NEW_TAG"
105
uv build --sdist --wheel --out-dir dist/
106
uv run --extra=release check-wheel-contents dist/*.whl
107
0 commit comments