source: .gitlab-ci.yml@ b14da65

Last change on this file since b14da65 was b14da65, checked in by w96k <w96k.ru@…>, on Feb 28, 2019 at 8:09:15 PM

Update CI

  • Property mode set to 100644
File size: 394 bytes
Line 
1variables:
2 GIT_SUBMODULE_STRATEGY: recursive
3
4image: monachus/hugo
5
6stages:
7 - hugo
8
9pages:
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.