File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 4949
5050 - name : Get the changelog underline
5151 id : changelog_underline
52+ env :
53+ RELEASE : ${{ steps.calver.outputs.release }}
5254 run : |
53- underline="$(echo "${{ steps.calver.outputs.release }} " | tr -c '\n' '-')"
55+ underline="$(echo "$RELEASE " | tr -c '\n' '-')"
5456 echo "underline=${underline}" >> "$GITHUB_OUTPUT"
5557
5658 - name : Update changelog
9597 body : ${{ steps.tag_version.outputs.changelog }}
9698
9799 - name : Build a binary wheel and a source tarball
100+ env :
101+ NEW_TAG : ${{ steps.tag_version.outputs.new_tag }}
98102 run : |
99103 git fetch --tags
100- git checkout ${{ steps.tag_version.outputs.new_tag }}
104+ git checkout "$NEW_TAG"
101105 uv build --sdist --wheel --out-dir dist/
102106 uv run --extra=release check-wheel-contents dist/*.whl
103107
You can’t perform that action at this time.
0 commit comments