-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added GitHub Action workflow to build and release the Python wheels
- Loading branch information
1 parent
f936b3f
commit 866d3dd
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Build and Release Python Wheels | ||
|
||
on: | ||
release: | ||
types: [published] | ||
tags: | ||
- 'v*' # Trigger for tags like v1.0, v2.0, ... | ||
|
||
jobs: | ||
build-and-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build twine | ||
- name: Build wheel | ||
run: | | ||
python -m build | ||
- name: Verify wheel files | ||
run: | | ||
twine check dist/* | ||
for file in dist/*.whl; do | ||
if ! [[ $file =~ .*-py3-none-any.whl$ ]]; then | ||
echo "Error: Wheel $file is not marked as pure Python." | ||
exit 1 | ||
fi | ||
done | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: dist/* | ||
|
||
- name: Upload wheel and sdist files to release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: dist/* | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# - name: Publish to PyPI | ||
# if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v') | ||
# uses: pypa/[email protected] | ||
# with: | ||
# password: ${{ secrets.PYPI_API_TOKEN }} | ||
# packages_dir: dist |