diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af8adec..b948fd3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,16 +2,16 @@ image: python:3.6-alpine publish: except: - - master + - production - devel script: - pip install -r requirements.txt - pelican -s pubconf-devel.py --fatal warnings - - pelican -s pubconf-master.py --fatal warnings + - pelican -s pubconf-production.py --fatal warnings pages: only: - - master + - production - devel script: - pip install -r requirements.txt diff --git a/pubconf-master.py b/pubconf-production.py similarity index 100% rename from pubconf-master.py rename to pubconf-production.py