File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Release
22on :
33 push :
44 tags :
5- - ' * '
5+ - " * "
66
77jobs :
88 build :
@@ -17,20 +17,22 @@ jobs:
1717 - name : Set up Python
1818 uses : actions/setup-python@v5
1919 with :
20- python-version : ' 3.11'
20+ python-version : " 3.11"
2121
2222 - name : Install dependencies
2323 run : |
2424 python -m pip install -U pip
2525 python -m pip install -U setuptools twine wheel
26+
2627 - name : Build package
2728 run : |
2829 python setup.py --version
2930 python setup.py sdist --format=gztar bdist_wheel
3031 twine check dist/*
32+
3133 - name : Upload packages to Jazzband
3234 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
33- uses : pypa/gh-action-pypi-publish@v1.12.3
35+ uses : pypa/gh-action-pypi-publish@release/v1
3436 with :
3537 user : jazzband
3638 password : ${{ secrets.JAZZBAND_RELEASE_KEY }}
Original file line number Diff line number Diff line change @@ -14,8 +14,12 @@ by enabling a cached backend. See [Advanced Usage](#advanced-usage)
1414
1515## Changelog
1616
17+ ## 4.0.3 (not released)
18+
1719## 4.0.2 (not released)
1820
21+ - Upgrade pypa/gh-action-pypi-publish as an attempt to fix publication of releases to pypi.
22+
1923## 4.0.1 (2025-01-07)
2024
2125Same as 4.0.0 with a fix on setup.py version
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def readfile(filename):
1010
1111setup (
1212 name = "django-fsm-log" ,
13- version = "4.0.1 " ,
13+ version = "4.0.2 " ,
1414 description = "Transition's persistence for django-fsm" ,
1515 long_description = readfile ("README.md" ),
1616 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments