diff options
author | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-04-06 12:18:00 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-04-06 12:18:00 +0200 |
commit | 045701aa9ac8ac9468225b1cd46b0a4bcb2f5927 (patch) | |
tree | cebd2cf3f135e2c11a12bd7f3e7c4874c4a2b724 | |
parent | fc476ec89f95a8011ae132dfda05d05ff4642d7a (diff) |
Fix gitlabconfig
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | pelicanconf.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4bb1c43..3fc57b3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,4 +6,4 @@ pages: - pelican -s publishconf.py artifacts: paths: - - output/ + - public/ diff --git a/pelicanconf.py b/pelicanconf.py index e8d1d44..9058ebf 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -8,7 +8,7 @@ SITESUBTITLE = u'' SITEURL = '' PATH = 'content' -OUTPUT_PATH = 'output' +OUTPUT_PATH = 'public' STATIC_PATHS = ('static',) PAGE_PATHS = ('pages',) ARTICLE_PATHS = ('posts',) |