We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5354377 commit 6c5cb0eCopy full SHA for 6c5cb0e
3 files changed
.github/workflows/release.yaml
@@ -24,16 +24,6 @@ jobs:
24
with:
25
python-version: "3.11"
26
27
- # Update version in code from tag
28
- - name: Update version from tag
29
- run: |
30
- TAG_NAME=${GITHUB_REF#refs/tags/}
31
- python scripts/set_version.py $TAG_NAME
32
- git config user.name "github-actions"
33
- git config user.email "actions@github.com"
34
- git commit -am "chore: set version from $TAG_NAME" || echo "No changes to commit"
35
- git push origin main
36
-
37
# Build and publish to PyPI/TestPyPI (same as before)
38
- name: Install build tools
39
run: |
pytest_htmlx/__init__.py
@@ -1 +1 @@
1
-__version__ = "0.3.1"
+__version__ = "0.3.2"
scripts/set_version.py
0 commit comments