diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84903ddb..92b55f9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -93,7 +93,7 @@ build_api_doc: - dartdoc --exclude "dart:async,dart:collection,dart:convert,dart:core,dart:developer,dart:io,dart:isolate,dart:math,dart:typed_data,dart:ui" artifacts: paths: - - doc/api/ + - docs/api/ only: - main @@ -103,7 +103,7 @@ build_doc: stage: builddocs image: registry.gitlab.com/larodar/mdbook-dtmo:latest script: - - cd doc + - cd docs - mdbook-dtmo build -d public - mv public ../doc-public artifacts: @@ -118,7 +118,7 @@ pages: stage: deploy image: alpine:latest script: - - mv doc/api/ ./home/api + - mv docs/api/ ./home/api - mv doc-public ./home/doc - mv home public dependencies: