diff options
-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',) |