source:
.gitlab-ci.yml@
5f744ae
Last change on this file since 5f744ae was b14da65, checked in by , on Feb 28, 2019 at 8:09:15 PM | |
---|---|
|
|
File size: 394 bytes |
Line | |
---|---|
1 | variables: |
2 | GIT_SUBMODULE_STRATEGY: recursive |
3 | |
4 | image: monachus/hugo |
5 | |
6 | stages: |
7 | - hugo |
8 | |
9 | pages: |
10 | stage: hugo |
11 | script: |
12 | - apt-get update |
13 | - apt-get install -y gnupg |
14 | - curl -sL https://deb.nodesource.com/setup_8.x | bash - |
15 | - apt-get install -y nodejs |
16 | - npm install |
17 | - cd themes/hugo-sui-blog; npm install; cd ../..; pwd |
18 | - hugo |
19 | artifacts: |
20 | paths: |
21 | - public |
22 | only: |
23 | - master |
24 |
Note:
See TracBrowser
for help on using the repository browser.