diff --git a/.ostc-ci/gitlab-ci.yml b/.ostc-ci/gitlab-ci.yml index d9bac9f6578edb9edda40572c7fd598e1eafe096..0006509ba20e41a6cc906fd9c32b05a3f3e5ff29 100644 --- a/.ostc-ci/gitlab-ci.yml +++ b/.ostc-ci/gitlab-ci.yml @@ -18,6 +18,7 @@ stages: - compliance - build - test + - deploy include: - project: 'OSTC/infrastructure/pipelines' @@ -58,6 +59,29 @@ build-docs: - docs/**/* # Run this job in case the pipeline changes. - .ostc-ci/*.yml + # Or when things land. + - if: '$CI_BRANCH_NAME == "$CI_DEFAULT_BRANCH"' + changes: + # React to changes to the docs directory. + - docs/**/* + # Run this job in case the pipeline changes. + - .ostc-ci/*.yml + +# When the build-docs pipeline is triggered by documentation change and it +# succeeds, then trigger the pipeline in the OSTC/OHOS/docs repository, to +# update the published documentation. +update-docs: + needs: [build-docs] # depend on build-docs to avoid publishing broken things. + stage: deploy + trigger: OSTC/OHOS/docs + rules: + # Update the documentation when things land in the default branch. + - if: '$CI_BRANCH_NAME == "$CI_DEFAULT_BRANCH"' + changes: + # React to changes to the docs directory. + - docs/**/* + # Run this job in case the pipeline changes. + - .ostc-ci/*.yml # Customize the generic .build job, included from build-generic.yaml above, # with settings for testing updates to the meta-ohos git repository.