Build against Numpy 1.22.0 #48
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
name: Wheels | |
on: [push, pull_request, workflow_dispatch] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
macos: | |
uses: ./.github/workflows/wheels-macos.yml | |
with: | |
build-commit: "HEAD" | |
artifacts-name: "wheels" | |
linux: | |
uses: ./.github/workflows/wheels-linux.yml | |
with: | |
build-commit: "HEAD" | |
artifacts-name: "wheels" | |
windows: | |
uses: ./.github/workflows/wheels-windows.yml | |
with: | |
build-commit: "HEAD" | |
artifacts-name: "wheels" | |
release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
if: "startsWith(github.ref, 'refs/tags/')" | |
needs: [macos, linux, windows] | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: wheels | |
- name: Upload Release | |
uses: fnkr/[email protected] | |
env: | |
GHR_PATH: . | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
success: | |
needs: [macos, linux, windows] | |
runs-on: ubuntu-latest | |
name: Wheels Successful | |
steps: | |
- name: Success | |
run: echo Wheels Successful |