We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad12c26 commit c1c83b4Copy full SHA for c1c83b4
2 files changed
.github/workflows/ci.yml
@@ -560,7 +560,7 @@ jobs:
560
561
############ BUILD DOCS ############
562
build-docs:
563
- if: always() && needs.changes.outputs.build-docs == 'true'
+ if: always() && needs.changes.result == 'success' && needs.build-other-packages.result == 'success'
564
name: Build Docs
565
needs:
566
- changes
.github/workflows/deploy-docs.yml
@@ -19,7 +19,8 @@ jobs:
19
deploy:
20
name: Cloudflare Pages Deployment
21
if: >
22
- github.repository == 'QwikDev/qwik'
+ github.repository == 'QwikDev/qwik' &&
23
+ github.event.workflow_run.conclusion == 'success'
24
runs-on: ubuntu-latest
25
steps:
26
- name: Check for docs artifact
0 commit comments