Skip to content

Commit cd0fd5f

Browse files
authored
Merge pull request #213 from ticosax/new-tag
Get a different version of pypa/gh-action-pypi-publish.
2 parents d69b60e + 72e0846 commit cd0fd5f

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release
22
on:
33
push:
44
tags:
5-
- '*'
5+
- "*"
66

77
jobs:
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 }}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

2125
Same as 4.0.0 with a fix on setup.py version

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readfile(filename):
1010

1111
setup(
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",

0 commit comments

Comments
 (0)