We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79f115c commit 16d3b23Copy full SHA for 16d3b23
.github/workflows/publish.yml
@@ -40,7 +40,8 @@ jobs:
40
41
- name: Verify tag version matches package version
42
run: |
43
- pip install twine
+ python -m pip install --upgrade pip
44
+ pip install build setuptools_scm twine
45
PACKAGE_VERSION=$(python -m setuptools_scm)
46
TAG_VERSION=${GITHUB_REF#refs/tags/} # Remove 'refs/tags/' prefix
47
if [ "$PACKAGE_VERSION" != "$TAG_VERSION" ]; then
0 commit comments