Skip to content

Commit 1ec2519

Browse files
authored
BLD: Fix upload PyPI (#820)
1 parent 662d959 commit 1ec2519

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-wheel.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)