From 07b09e0611e82d4b8492b4831fa0bf8e4b4df9e2 Mon Sep 17 00:00:00 2001 From: Miles Granger Date: Mon, 6 Nov 2023 14:21:45 +0100 Subject: [PATCH] Add wheels.yml workflow for release to PyPI --- .github/workflows/wheels.yml | 60 ++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .github/workflows/wheels.yml diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml new file mode 100644 index 0000000..e85f37b --- /dev/null +++ b/.github/workflows/wheels.yml @@ -0,0 +1,60 @@ +name: Build and maybe upload to PyPI + +on: + push: + pull_request: + release: + types: + - released + - prereleased + +jobs: + artifacts: + name: Build wheels on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Build wheels + run: pip wheel . -w wheels + - uses: actions/upload-artifact@v3 + with: + name: artifacts + path: ./dist/dask_glm* + + list_artifacts: + name: List build artifacts + needs: [artifacts] + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v3 + with: + name: artifacts + path: dist + - name: test + run: | + ls + ls dist + + upload_pypi: + needs: [artifacts] + if: "startsWith(github.ref, 'refs/tags/')" + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v3 + with: + name: artifacts + path: dist + - uses: pypa/gh-action-pypi-publish@release/v1 + with: + packages-dir: dist + skip-existing: true