From 834e888d84e555c7212b6f3126696c757b7a8327 Mon Sep 17 00:00:00 2001 From: Florian Angerer Date: Tue, 2 May 2023 21:27:58 +0200 Subject: [PATCH] Fix workflow condition --- .github/workflows/release-pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 7b6d7251..6a2fe484 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -91,7 +91,7 @@ jobs: needs: [build_sdist, build_bdist] runs-on: ubuntu-latest # don't do this action on forks by default - if: github.event_name == 'push' && github.repository == 'hpyproject/hpy' + if: github.repository == 'hpyproject/hpy' steps: - uses: actions/download-artifact@v3 with: @@ -119,7 +119,7 @@ jobs: needs: [upload_pypi] runs-on: ubuntu-latest # don't do this action on forks by default - if: github.event_name == 'push' && github.repository == 'hpyproject/hpy' + if: github.repository == 'hpyproject/hpy' steps: - uses: actions/download-artifact@v3 with: