Skip to content

Commit

Permalink
updated publishing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ntessore committed Oct 11, 2024
1 parent 5cf51b6 commit 37e127c
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 62 deletions.
62 changes: 0 additions & 62 deletions .github/workflows/cibuildwheel.yml

This file was deleted.

90 changes: 90 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: Build and upload to PyPI

on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
release:
types:
- published
workflow_dispatch:
inputs:
ref:
description: Build ref
required: true
type: string
build:
description: CIBW_BUILD
type: string
skip:
description: CIBW_SKIP
type: string
sdist:
description: Build sdist
type: boolean
upload:
description: Upload to PyPI
type: boolean

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || '' }}

- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: ${{ inputs.build || 'cp*' }}
CIBW_SKIP: ${{ inputs.skip || '' }}

- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl

build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
if: github.event_name == 'release' || inputs.sdist
steps:
- uses: actions/checkout@v4

- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz

upload_pypi:
name: Upload to PyPI
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: |
always()
&& (needs.build_wheels.result == 'success' || needs.build_wheels.result == 'skipped')
&& (needs.build_sdist.result == 'success' || needs.build_sdist.result == 'skipped')
&& (github.event_name == 'release' && github.event.action == 'published' || inputs.upload)
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 37e127c

Please sign in to comment.