mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 20:27:06 +03:00
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
name: Wheels
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
macos:
|
|
uses: ./.github/workflows/wheels-macos.yml
|
|
with:
|
|
build-commit: "HEAD"
|
|
artifacts-name: "wheels"
|
|
|
|
ubuntu:
|
|
uses: ./.github/workflows/wheels-ubuntu.yml
|
|
with:
|
|
build-commit: "HEAD"
|
|
artifacts-name: "wheels"
|
|
|
|
macos-latest:
|
|
if: "!startsWith(github.ref, 'refs/tags/')"
|
|
uses: ./.github/workflows/wheels-macos.yml
|
|
with:
|
|
build-commit: "main"
|
|
artifacts-name: "wheels-latest"
|
|
|
|
ubuntu-latest:
|
|
if: "!startsWith(github.ref, 'refs/tags/')"
|
|
uses: ./.github/workflows/wheels-ubuntu.yml
|
|
with:
|
|
build-commit: "main"
|
|
artifacts-name: "wheels-latest"
|
|
|
|
release:
|
|
name: Create Release
|
|
runs-on: ubuntu-latest
|
|
if: "startsWith(github.ref, 'refs/tags/')"
|
|
needs: [macos, ubuntu]
|
|
steps:
|
|
- uses: actions/download-artifact@v3
|
|
with:
|
|
name: wheels
|
|
- name: Upload Release
|
|
uses: fnkr/github-action-ghr@v1.3
|
|
env:
|
|
GHR_PATH: .
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
success:
|
|
needs: [macos, ubuntu, macos-latest, ubuntu-latest]
|
|
runs-on: ubuntu-latest
|
|
name: Wheels Successful
|
|
steps:
|
|
- name: Success
|
|
run: echo Wheels Successful
|