From b18ddde5aede19047204383133a2ae94a8ae8c0c Mon Sep 17 00:00:00 2001 From: Mikita Sakalouski <38785549+mikita-sakalouski@users.noreply.github.com> Date: Wed, 29 May 2024 21:37:29 +0200 Subject: [PATCH] chore: fix condition in release workflow --- .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 29e2a518..e130d617 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,9 @@ env: jobs: publish-pypi: name: Publish to PyPI - if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push' && startsWith(github.event.workflow_run.event.ref, 'refs/tags') }} + if: ${{ github.event.workflow_run.conclusion == 'success' }} + # FIXME: This is not working as expected + # && github.event.workflow_run.event == 'push' && startsWith(github.event.workflow_run.event.ref, 'refs/tags') runs-on: ubuntu-latest steps: