We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e948389 commit 810f996Copy full SHA for 810f996
.github/workflows/release.yml
@@ -51,3 +51,19 @@ jobs:
51
uses: softprops/action-gh-release@v2
52
with:
53
files: ./wheelhouse/*
54
+
55
+ publish-pypi:
56
+ runs-on: ubuntu-24.04
57
+ needs: [ build-wheels ]
58
+ steps:
59
+ - name: Download artifacts
60
+ uses: actions/download-artifact@v4
61
+ with:
62
+ pattern: cibw-wheels-*
63
+ path: ./wheelhouse/
64
+ merge-multiple: true
65
+ - name: Publish package to PyPI
66
+ uses: pypa/gh-action-pypi-publish@release/v1
67
68
+ packages-dir: ./wheelhouse/
69
+ password: ${{ secrets.PYPI_PASSWORD_GEOMDL }}
0 commit comments