Skip to content

Commit 26984c0

Browse files
authored
chore: java and python publish do not block on Rust publish (#3762)
It is very easy for a maintainer to manually release the Rust crates after a failure, it is very difficult to release the Java and Python modules except from CI since they need to perform cross-platform builds. Signed-off-by: Andrew Duffy <[email protected]>
1 parent 0844864 commit 26984c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
path: dist/
106106

107107
publish-python:
108-
needs: [ prepare-python, publish-rust ]
108+
needs: [ prepare-python ]
109109
runs-on: ubuntu-latest
110110
timeout-minutes: 120
111111
permissions:
@@ -158,7 +158,7 @@ jobs:
158158
if-no-files-found: error
159159

160160
publish-java:
161-
needs: [ prepare-java, publish-rust ]
161+
needs: [ prepare-java ]
162162
runs-on: ubuntu-latest
163163
timeout-minutes: 120
164164
env:

0 commit comments

Comments
 (0)