From 5647e826ed6d3442a1b940b08039d706ee5311c5 Mon Sep 17 00:00:00 2001 From: Freezed <2160318-free_zed@users.noreply.gitlab.com> Date: Mon, 7 Sep 2020 00:49:03 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Move=20branch=20`master`=20to=20?= =?UTF-8?q?`production`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is more appropriate. --- .gitlab-ci.yml | 6 +++--- pubconf-master.py => pubconf-production.py | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename pubconf-master.py => pubconf-production.py (100%) 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