We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent defe9d5 commit 1145d29Copy full SHA for 1145d29
.github/workflows/release.yaml
@@ -23,13 +23,11 @@ jobs:
23
uses: actions/checkout@v4
24
with:
25
fetch-depth: 1
26
- fetch-tags: 'true'
27
show-progress: 'false'
28
29
- name: Set version statically
30
run: |
31
- pip3 install setuptools_scm
32
- VERSION="$(python3 -m setuptools_scm)"
+ VERSION=${{ github.event.release.tag_name }}
33
sed -i "s/setup_requires=.*/version='$VERSION',/; s/use_scm_version=.*//" setup.py
34
echo "Version: $VERSION"
35
@@ -107,7 +105,6 @@ jobs:
107
105
108
106
109
110
111
112
113
- name: Build documentation
0 commit comments