From fcf686be962f221ae49a85fbeeb04f9ed4740f52 Mon Sep 17 00:00:00 2001 From: masklinn Date: Sun, 15 Jun 2025 21:24:59 +0200 Subject: [PATCH] Fix wheels action fuckup `github.event` is the full webhook payload so it never matches a string literal... --- .github/workflows/pyo3-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pyo3-wheels.yml b/.github/workflows/pyo3-wheels.yml index 4379665..d932a6d 100644 --- a/.github/workflows/pyo3-wheels.yml +++ b/.github/workflows/pyo3-wheels.yml @@ -224,7 +224,7 @@ jobs: name: Release runs-on: ubuntu-latest needs: [py-release-tests, py-release-sdist] - if: github.event == 'workflow_dispatch' && inputs.release + if: github.event_name == 'workflow_dispatch' && inputs.release permissions: # Use to sign the release artifacts id-token: write