Commit 9af5de0d authored by Thomas Boni's avatar Thomas Boni
Browse files

run directly commands instead of using make

parent 10a587b8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@ documentation:
    entrypoint: [""]
  stage: build
  script:
    - apk add make
    - make jobs
	  - for jobs in Jobs/*; do if [ -d ${job} ]; then mkdir -p docs/${job} && cp ${job}/README.md docs/${job}; fi; done
	  - for doc in docs/Jobs/*; do if [ -d ${doc} ]; then echo 'collapse: true' > ${doc}/.pages; fi; done
    - mkdocs build -d ./public
  artifacts:
    when: always