From a147a248f93a4f068fa3614183e5a25c79f98803 Mon Sep 17 00:00:00 2001 From: "Adam J. Jackson" Date: Tue, 16 Jul 2024 16:57:25 +0100 Subject: [PATCH] Mac ARM build/push against release workflow_dispatch from non-master doesn't seem to be registering. Instead let's try directly checking-out the target release. --- .github/workflows/build_upload_pypi_arm_wheels.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_upload_pypi_arm_wheels.yml b/.github/workflows/build_upload_pypi_arm_wheels.yml index fcfbd38dc..e8f0b5ff3 100644 --- a/.github/workflows/build_upload_pypi_arm_wheels.yml +++ b/.github/workflows/build_upload_pypi_arm_wheels.yml @@ -1,7 +1,7 @@ name: Build and upload PyPI wheels for ARM Mac on: - workflow_dispatch: + push: jobs: build: @@ -22,6 +22,7 @@ jobs: steps: - uses: actions/checkout@v4 with: + ref: v1.3.2 fetch-depth: 0 # Ensure tags are fetched for versioning - name: Setup Python ${{ matrix.python-version }} with Conda uses: conda-incubator/setup-miniconda@v3