Skip to content

Commit

Permalink
workflows: fix publish job dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
suvayu committed Jul 11, 2024
1 parent 2aa7d20 commit 3df0bdd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
retention-days: 7

test:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -64,7 +65,7 @@ jobs:
publish:
# isolate from test, to prevent partial uploads
needs: [build, test]
needs: test
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down

0 comments on commit 3df0bdd

Please sign in to comment.