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

30 lines
715 B
YAML
Raw Normal View History

2020-11-26 18:11:37 -05:00
test:
2020-11-20 13:22:00 -05:00
image: python
2020-11-26 18:11:37 -05:00
stage: test
2020-11-20 13:22:00 -05:00
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
2020-11-26 18:11:37 -05:00
except:
- master
2020-11-20 13:22:00 -05:00
pages:
2020-11-26 18:11:37 -05:00
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
- tar zxvf zola.tgz
- git clone https://github.com/getzola/book.git themes/book/
2020-11-20 13:22:00 -05:00
script:
2020-11-26 18:11:37 -05:00
- ./zola build
2020-11-20 13:22:00 -05:00
artifacts:
paths:
- public
2020-11-26 18:12:21 -05:00
only:
2020-11-20 13:22:00 -05:00
- master