Skip to content

Commit 69e334b

Browse files
Don't block website updates on failed published job
1 parent 130e0d7 commit 69e334b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ jobs:
298298
GPG_EMAIL: ${{ secrets.GPG_EMAIL }}
299299

300300
website-nightly:
301-
needs: publish
301+
needs: [jvm-tests, format, checks, reference-doc]
302302
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/v')
303303
runs-on: ubuntu-latest
304304
steps:
@@ -317,7 +317,7 @@ jobs:
317317

318318
# same as website-nightly above, but for the 'needs' and 'if' fields
319319
website-release:
320-
needs: [publish, update-packages]
320+
needs: [jvm-tests, format, checks, reference-doc, update-packages]
321321
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
322322
runs-on: ubuntu-latest
323323
steps:

0 commit comments

Comments
 (0)