From f9798ebc754c7eaace4263046a9b97ab50073fed Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Tue, 16 Jan 2024 13:16:26 +0100 Subject: [PATCH] Run release workflow on the creation of a tag Currently the release workflow doesn't run on the creation of a tag, and therefore the wheel isn't deployed to PyPI. This commit should fix that. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f80d2fb3ced..5ce4e87bd22 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,8 @@ name: Release on: push: + tags: + - '*' branches: - main - release**