File tree 1 file changed +25
-12
lines changed
1 file changed +25
-12
lines changed Original file line number Diff line number Diff line change 24
24
- name : Set up Python
25
25
26
26
with :
27
- python-version : " 3.9 "
27
+ python-version : " 3.12 "
28
28
29
29
- name : Upgrade pip
30
30
run : |
@@ -73,33 +73,46 @@ jobs:
73
73
name : release-artifacts
74
74
path : dist/
75
75
76
- pypi-publish :
76
+ test- pypi-publish :
77
77
name : Publish to PyPI
78
78
needs : [tag-and-build]
79
+ if : " ! needs.tag-and-build.outputs.tag"
79
80
environment :
80
- name : release
81
+ name : test-pypi
81
82
url : https://test.pypi.org/p/protosym
82
83
permissions :
83
84
id-token : write
84
85
runs-on : ubuntu-latest
85
86
86
87
steps :
87
- - run : echo "Tag = ${{ needs.tag-and-build.outputs.tag }}"
88
-
89
88
- name : Download release artifacts
90
89
uses : actions/download-artifact@v4
91
90
with :
92
91
name : release-artifacts
93
92
path : dist
94
93
95
- - run : ls -R dist
96
-
97
- - name : Publish package on PyPI
98
- if : needs.tag-and-build.outputs.tag
99
- uses : pypa/gh-action-pypi-publish@release/v1
100
-
101
94
- name : Publish package on TestPyPI
102
- if : " ! needs.tag-and-build.outputs.tag"
103
95
uses : pypa/gh-action-pypi-publish@release/v1
104
96
with :
105
97
repository-url : https://test.pypi.org/legacy/
98
+
99
+ pypi-publish :
100
+ name : Publish to PyPI
101
+ needs : [tag-and-build]
102
+ if : needs.tag-and-build.outputs.tag
103
+ environment :
104
+ name : pypi
105
+ url : https://pypi.org/p/protosym
106
+ permissions :
107
+ id-token : write
108
+ runs-on : ubuntu-latest
109
+
110
+ steps :
111
+ - name : Download release artifacts
112
+ uses : actions/download-artifact@v4
113
+ with :
114
+ name : release-artifacts
115
+ path : dist
116
+
117
+ - name : Publish package on PyPI
118
+ uses : pypa/gh-action-pypi-publish@release/v1
You can’t perform that action at this time.
0 commit comments