rabbitizer/.github/workflows/pypi_upload.yml

59 lines
1.4 KiB
YAML
Raw Normal View History

name: Build and upload to PyPI
# Only run on releases
on:
push:
# Pattern matched against refs/tags
tags:
- '**' # Push events to every tag including hierarchical tags like v1.0/beta
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
2023-09-13 13:51:26 +00:00
- uses: actions/checkout@v4
- name: Build wheels
2023-04-30 13:47:00 +00:00
uses: pypa/cibuildwheel@v2.12.3
env:
2022-07-09 20:06:04 +00:00
CIBW_ARCHS_WINDOWS: "auto"
2022-07-09 22:15:17 +00:00
CIBW_ARCHS_LINUX: "auto"
CIBW_ARCHS_MACOS: "all"
2023-04-02 18:28:12 +00:00
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
2023-09-13 13:51:26 +00:00
- uses: actions/checkout@v4
- name: Build sdist
run: pipx run build --sdist
2023-04-02 18:28:12 +00:00
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@v1.4.2
with:
user: __token__
password: ${{ secrets.pypi_password }}