File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 27
27
name : artifact
28
28
path : dist/*
29
29
30
- publish :
30
+ # Calling the publish-action twice in the same job is not supported:
31
+ # https://github.com/pypa/gh-action-pypi-publish/issues/352
32
+ release-TestPyPi :
31
33
name : Publish package
32
34
if : startsWith(github.ref, 'refs/tags/')
33
35
needs : [build]
44
46
uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
45
47
with :
46
48
repository-url : https://test.pypi.org/legacy/
49
+ release-PyPi :
50
+ name : Publish package
51
+ if : startsWith(github.ref, 'refs/tags/')
52
+ needs : [build]
53
+ runs-on : ubuntu-latest
54
+ permissions :
55
+ id-token : write
56
+ environment : pypi
57
+ steps :
58
+ - uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
59
+ with :
60
+ name : artifact
61
+ path : dist
47
62
- name : Publish package on PyPi
48
63
uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
Original file line number Diff line number Diff line change 7
7
Change log
8
8
==========
9
9
10
+
11
+ 0.14.1 (2025-06-04)
12
+ -------------------
13
+
14
+ Technical release to address a PyPI publishing issue.
15
+
16
+
10
17
0.14.0 (2025-06-03)
11
18
-------------------
12
19
You can’t perform that action at this time.
0 commit comments