From 43b688961c4d33faed9f55a17fc926d501560090 Mon Sep 17 00:00:00 2001 From: Gereon Kremer Date: Fri, 1 Apr 2022 22:29:24 +0200 Subject: [PATCH] Only run pypi packaging when release is published (#8526) We incorrectly triggered pypi packaging when a release was created or published, i.e. it would run twice. --- .github/workflows/package_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package_pypi.yml b/.github/workflows/package_pypi.yml index 79c740157..53e0d3d3d 100644 --- a/.github/workflows/package_pypi.yml +++ b/.github/workflows/package_pypi.yml @@ -1,6 +1,6 @@ on: release: - types: [created, published] + types: [published] schedule: - cron: '0 1 * * *' -- 2.30.2