File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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/
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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments