We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eef6070 commit cd392f6Copy full SHA for cd392f6
1 file changed
.github/workflows/release.yml
@@ -36,7 +36,8 @@ jobs:
36
- name: Extract package version
37
id: get_version
38
run: |
39
- VERSION=$(uvx -q hatch version)
+ FILE=$(ls dist/getstream-*.tar.gz | head -1)
40
+ VERSION=$(basename "$FILE" .tar.gz | sed 's/^getstream-//')
41
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
42
43
- name: Publish to PyPI (Trusted Publishing)
0 commit comments