diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33aa352..77b720d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,14 @@ image: pandoc/latex:2.9.2.1 +stages: + - build + build: + stage: build script: - - ls
\ No newline at end of file + - pandoc --version + - chmod +x ./build.sh + - ./build.sh + artifacts: + paths: + - "build"
\ No newline at end of file |