Skip to content

Commit 3b3e8be

Browse files
authored
Merge pull request #4 from Mng-dev-ai/update-cd
Update CD
2 parents 0a2b563 + 678ba95 commit 3b3e8be

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/CD.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,21 +92,22 @@ jobs:
9292
- name: Upload sdist
9393
uses: actions/upload-artifact@v3
9494
with:
95-
name: wheels
95+
name: dist
9696
path: dist
9797

98-
release:
98+
release:
9999
name: Release
100100
runs-on: ubuntu-latest
101101
needs: [linux, windows, macos, sdist]
102102
steps:
103103
- uses: actions/download-artifact@v3
104104
with:
105-
name: wheels
105+
name: dist
106+
path: dist
106107
- name: Publish to PyPI
107108
uses: PyO3/maturin-action@v1
108109
env:
109110
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
110111
with:
111112
command: upload
112-
args: --skip-existing *
113+
args: --skip-existing dist/*

0 commit comments

Comments
 (0)