Skip to content

Commit 810f996

Browse files
committed
add publish to pypi job
1 parent e948389 commit 810f996

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,19 @@ jobs:
5151
uses: softprops/action-gh-release@v2
5252
with:
5353
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+
with:
68+
packages-dir: ./wheelhouse/
69+
password: ${{ secrets.PYPI_PASSWORD_GEOMDL }}

0 commit comments

Comments
 (0)