Skip to content

Commit

Permalink
Merge pull request #430 from hpyproject/fa/fix_workflow_cond
Browse files Browse the repository at this point in the history
Fix workflow condition.
  • Loading branch information
fangerer authored May 2, 2023
2 parents 885add8 + 834e888 commit 94aaada
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 94aaada

Please sign in to comment.