From ef0d9163ea65599ac586d8a9a24878c11a6e24ab Mon Sep 17 00:00:00 2001 From: Daniel McDonald Date: Mon, 8 May 2023 17:00:53 -0700 Subject: [PATCH] kick --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 213f95cc..d41a9767 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,9 @@ jobs: release: needs: [build_wheels, build_sdist] runs-on: ubuntu-latest - if: github.event_name == 'release' && github.event.action == 'published' + # this is not ideal as it doesn't limit to what type of tag + # but it at least seems to work + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') steps: - name: Stage artifacts