From db8938791fe7e8d22e964c78e04b2d4e61638667 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Wed, 16 Apr 2025 00:20:56 -0400 Subject: build nightly wheels whenever a PR is merged Closes https://github.com/mesonbuild/meson/issues/14419 --- .github/workflows/nightly.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 000000000..ab773f9e0 --- /dev/null +++ b/.github/workflows/nightly.yml @@ -0,0 +1,32 @@ +name: Nightly Wheels + +concurrency: + group: wheels + cancel-in-progress: true + +on: + push: + branches: + - master + paths: + - "mesonbuild/*" + +permissions: + contents: read + +jobs: + wheel: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Build wheel + run: | + python -m pip install build setuptools_scm + python -m build -nwx + - name: Upload wheel + uses: scientific-python/upload-nightly-action@main + with: + artifacts_path: dist + anaconda_nightly_upload_token: ${{secrets.ANACONDA_ORG_UPLOAD_TOKEN}} -- cgit v1.2.3