Skip to content

Commit 5046ba4

Browse files
committed
ci: Remove redundant job dependencies.
1 parent 2e8b88f commit 5046ba4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165

166166
create-github-release:
167167
name: Create GitHub release
168-
needs: [build, lint, check]
168+
needs: [check]
169169
runs-on: ubuntu-latest
170170
permissions:
171171
contents: write
@@ -230,7 +230,7 @@ jobs:
230230
publish-test-pypi:
231231
name: Publish packages to test.pypi.org
232232
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
233-
needs: [build, lint, check, create-github-release]
233+
needs: [create-github-release]
234234
runs-on: ubuntu-latest
235235
permissions:
236236
id-token: write
@@ -249,7 +249,7 @@ jobs:
249249
name: Publish packages to pypi.org
250250
environment: release
251251
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
252-
needs: [build, lint, check, create-github-release]
252+
needs: [create-github-release]
253253
runs-on: ubuntu-latest
254254
permissions:
255255
contents: write

0 commit comments

Comments
 (0)