15
15
runs-on : ubuntu-latest
16
16
needs : [build-user-guide, build-frontend]
17
17
steps :
18
- - uses : actions/checkout@v3
19
- - uses : actions/setup-python@v4
18
+ - uses : actions/checkout@v4
19
+ - uses : actions/setup-python@v5
20
20
with :
21
21
python-version : " 3.11"
22
22
- uses : actions/download-artifact@v4
34
34
cd back
35
35
python -m build
36
36
- name : Store the distribution packages
37
- uses : actions/upload-artifact@v3
37
+ uses : actions/upload-artifact@v4
38
38
with :
39
39
name : python-package-distributions
40
40
path : back/dist/
54
54
id-token : write
55
55
steps :
56
56
- name : Download all the dists
57
- uses : actions/download-artifact@v3
57
+ uses : actions/download-artifact@v4
58
58
with :
59
59
name : python-package-distributions
60
60
path : dist/
74
74
75
75
steps :
76
76
- name : Download the dists
77
- uses : actions/download-artifact@v3
77
+ uses : actions/download-artifact@v4
78
78
with :
79
79
name : python-package-distributions
80
80
path : dist/
@@ -100,9 +100,11 @@ jobs:
100
100
101
101
steps :
102
102
- name : Download all the dists
103
- uses : actions/download-artifact@v3
103
+ uses : actions/download-artifact@v4
104
104
with :
105
105
name : python-package-distributions
106
106
path : dist/
107
107
- name : Publish distribution 📦 to PyPI
108
108
uses : pypa/gh-action-pypi-publish@release/v1
109
+ with :
110
+ repository-url : https://test.pypi.org/legacy/
0 commit comments