Skip to content

Commit

Permalink
added gitlab ci
Browse files Browse the repository at this point in the history
  • Loading branch information
edavidaja committed Jun 9, 2019
1 parent f3f37e9 commit 8150423
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
image: registry.gitlab.com/pages/hugo:latest

variables:
GIT_SUBMODULE_STRATEGY: recursive

test:
script:
- hugo
except:
- master

pages:
script:
- hugo -b "https://edavidaja.gitlab.io/docter" -c "exampleSite/content" --config "exampleSite/config.toml" -t "docter" --themesDir ./..
artifacts:
paths:
- public
only:
- master

0 comments on commit 8150423

Please sign in to comment.