Skip to content
Snippets Groups Projects
.gitlab-ci.yml 314 B
Newer Older
x2004933's avatar
x2004933 committed
image: alpine
x2004933's avatar
x2004933 committed

before_script:
x2004933's avatar
x2004933 committed
  - apk add git sed bash pandoc
x2004933's avatar
x2004933 committed

pages_test:
  stage: test
  script:
  - cp -a pages.sh pages-exec.sh
  - ./pages-exec.sh
  - du -sh public/

pages:
  stage: deploy
  script:
  - cp -a pages.sh pages-exec.sh
  - ./pages-exec.sh
  artifacts:
    paths:
    - public
  only:
  - master