1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-09 11:52:31 +00:00

🚧 Add live setup for PyConFr 23

- Remove legacy devel job (unused)
- 💚 Remove trailing slash

Failed job:
https://gitlab.com/free_zed/free_zed.gitlab.io/-/jobs/3794168065
This commit is contained in:
Freezed 2023-02-18 02:23:58 +01:00 committed by freezed
parent 4ed2cc7194
commit a6e8e48f56
3 changed files with 21 additions and 1 deletions

View File

@ -6,12 +6,13 @@ publish:
- devel
script:
- pip install -r requirements.txt
- pelican -s pubconf-devel.py --fatal warnings
- pelican -s pubconf-live_pyconfr.py --fatal warnings
- pelican -s pubconf-production.py --fatal warnings
pages:
only:
- production
- live_pyconfr
script:
- pip install -r requirements.txt
- date --utc +%H:%M > theme-uberspot/templates/time

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

19
pubconf-live_pyconfr.py Normal file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.
import os
import sys
sys.path.append(os.curdir)
from pelicanconf import *
# If your site is available via HTTPS, make sure SITEURL begins with https://
SITEURL = 'http://pro.zind.fr/live-pyconfr'
FEED_ALL_ATOM = 'feeds/all.atom.xml'
# URL of the repo to link build commit
REPO_COMMIT_URL = 'https://gitlab.com/free_zed/free_zed.gitlab.io/commit'