Skip to content

Commit

Permalink
Fixup CI
Browse files Browse the repository at this point in the history
- Share sdist action
- Fix gathering uploaded artifacts
  • Loading branch information
saghul committed Nov 25, 2024
1 parent 6885e0e commit 4109eef
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 21 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,16 @@ jobs:
uses: ./.github/workflows/run-cibuildwheel.yml
with:
prerelease-pythons: true

build_sdist:
uses: ./.github/workflows/run-sdist.yml

check_build:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- run: ls -lR dist
26 changes: 5 additions & 21 deletions .github/workflows/release-wheels.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Release Wheels

on:
pull_request:
release:
types:
- published
Expand All @@ -13,34 +12,19 @@ jobs:
fail-fast: true

build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
name: Install Python
with:
check-latest: true
python-version: '3.13'
- name: Install setuptools
run: python -m pip install -U setuptools
- name: Build sdist
run: python setup.py sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
uses: ./.github/workflows/run-sdist.yml

upload_pypi:
needs: [build_wheels, build_sdist]
if: github.event_name == 'release' && github.event.action == 'published'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- run: ls -lR dist
- name: Upload to PyPI
if: github.event_name == 'release' && github.event.action == 'published'
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/run-sdist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
workflow_call:

jobs:
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
name: Install Python
with:
check-latest: true
python-version: '3.13'
- name: Install setuptools
run: python -m pip install -U setuptools
- name: Build sdist
run: python setup.py sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz

0 comments on commit 4109eef

Please sign in to comment.