We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9f5c2 commit e5e2ce1Copy full SHA for e5e2ce1
.github/workflows/publish-nightly.yml
@@ -33,14 +33,24 @@ jobs:
33
--wheel
34
--outdir dist/
35
.
36
+ - name: Upload artifacts
37
+ uses: actions/upload-artifact@v4
38
+ with:
39
+ name: dist
40
+ path: dist/
41
+
42
upload-nightly-wheel:
43
if: github.repository_owner == 'haosulab'
44
needs: build-nightly
45
runs-on: ubuntu-22.04
46
steps:
- - name: Checkout code
- uses: actions/checkout@v4
- - name: Upload nightly wheel
47
+ - name: Download artifacts
48
+ uses: actions/download-artifact@v4
49
50
51
52
+ - name: Upload to PyPI
53
uses: pypa/gh-action-pypi-publish@release/v1
54
with:
- password: ${{ secrets.PYPI_API_TOKEN }}
55
+ password: ${{ secrets.PYPI_API_TOKEN }}
56
+ packages-dir: dist/
0 commit comments