Skip to content

Commit 960bf96

Browse files
committed
release
1 parent e39e89d commit 960bf96

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/publish.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,9 @@ jobs:
3232
name: dist
3333
path: dist/
3434

35-
publish-pypi:
36-
name: Publish to PyPI
37-
needs: [build]
38-
runs-on: ubuntu-latest
39-
permissions:
40-
id-token: write
41-
steps:
42-
- name: Download artifacts
43-
uses: actions/download-artifact@v4
44-
with:
45-
name: dist
46-
path: dist/
47-
- name: Publish to PyPI
48-
uses: pypa/gh-action-pypi-publish@release/v1
49-
5035
github-release:
5136
name: Create GitHub Release
52-
needs: [build, publish-pypi]
37+
needs: [build]
5338
runs-on: ubuntu-latest
5439
permissions:
5540
contents: write
@@ -58,7 +43,7 @@ jobs:
5843
with:
5944
fetch-depth: 0
6045
- name: Download artifacts
61-
uses: actions/download-artifact@v4
46+
uses: actions/download-artifact@v8
6247
with:
6348
name: dist
6449
path: dist/
@@ -69,3 +54,18 @@ jobs:
6954
gh release create "${{ github.ref_name }}" dist/* \
7055
--title "${{ github.ref_name }}" \
7156
--generate-notes
57+
58+
publish-pypi:
59+
name: Publish to PyPI
60+
needs: [build, github-release]
61+
runs-on: ubuntu-latest
62+
permissions:
63+
id-token: write
64+
steps:
65+
- name: Download artifacts
66+
uses: actions/download-artifact@v8
67+
with:
68+
name: dist
69+
path: dist/
70+
- name: Publish to PyPI
71+
uses: pypa/gh-action-pypi-publish@release/v1

jtop/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
__copyright__ = "(c) 2026, Raffaello Bonghi"
3232
# Version package
3333
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#choosing-a-versioning-scheme
34-
__version__ = "7.1.2"
34+
__version__ = "7.1.4"
3535
# EOF

0 commit comments

Comments
 (0)