File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -119,22 +119,22 @@ jobs:
119119 # upload to PyPI on every tag starting with 'v'
120120 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
121121 steps :
122- - uses : actions/download-artifact@v4.1.7
122+ - uses : actions/download-artifact@v3
123123 with :
124124 # unpacks default artifact into dist/
125125 # if `name: artifact` is omitted, the action will create extra parent dir
126126 name : artifact
127127 path : dist
128128
129- # if is xprobe repo, upload to pypi
129+ # if is xorbits repo, upload to pypi
130130 - uses : pypa/gh-action-pypi-publish@release/v1
131131 if : github.repository == 'xorbitsai/xorbits'
132132 with :
133133 user : __token__
134134 password : ${{ secrets.PYPI_PASSWORD }}
135135 skip-existing : true
136136
137- # if is not xprobe repo, upload to test
137+ # if is not xorbits repo, upload to test
138138 - uses : pypa/gh-action-pypi-publish@release/v1
139139 if : github.repository != 'xorbitsai/xorbits'
140140 with :
You can’t perform that action at this time.
0 commit comments