joplin-mdbooks-website/.gitlab-ci.yml

25 lines
480 B
YAML
Raw Normal View History

2020-11-20 13:22:00 -05:00
build:
image: python
stage: build
before_script:
- wget https://github.com/getzola/zola/releases/download/v0.12.2/zola-v0.12.2-x86_64-unknown-linux-gnu.tar.gz -O zola.tgz
2020-11-20 13:24:42 -05:00
- tar zxvf zola.tgz
2020-11-20 13:26:17 -05:00
- git clone https://github.com/getzola/book.git themes/book/
2020-11-20 13:22:00 -05:00
script:
- ./zola build
artifacts:
paths:
- public
pages:
stage: deploy
script:
- ls -lah public/
dependencies:
- build
artifacts:
paths:
- public
only:
- master