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
2
2
on :
3
3
push :
4
4
tags :
5
- - ' * '
5
+ - " * "
6
6
7
7
jobs :
8
8
build :
@@ -17,20 +17,22 @@ jobs:
17
17
- name : Set up Python
18
18
uses : actions/setup-python@v5
19
19
with :
20
- python-version : ' 3.11'
20
+ python-version : " 3.11"
21
21
22
22
- name : Install dependencies
23
23
run : |
24
24
python -m pip install -U pip
25
25
python -m pip install -U setuptools twine wheel
26
+
26
27
- name : Build package
27
28
run : |
28
29
python setup.py --version
29
30
python setup.py sdist --format=gztar bdist_wheel
30
31
twine check dist/*
32
+
31
33
- name : Upload packages to Jazzband
32
34
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
34
36
with :
35
37
user : jazzband
36
38
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)
14
14
15
15
## Changelog
16
16
17
+ ## 4.0.3 (not released)
18
+
17
19
## 4.0.2 (not released)
18
20
21
+ - Upgrade pypa/gh-action-pypi-publish as an attempt to fix publication of releases to pypi.
22
+
19
23
## 4.0.1 (2025-01-07)
20
24
21
25
Same 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):
10
10
11
11
setup (
12
12
name = "django-fsm-log" ,
13
- version = "4.0.1 " ,
13
+ version = "4.0.2 " ,
14
14
description = "Transition's persistence for django-fsm" ,
15
15
long_description = readfile ("README.md" ),
16
16
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments