Skip to content
Snippets Groups Projects
Commit aba3d9b2 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Merge branch 'ci' into 'master'

Use GitLab CI to build site

See merge request !2
parents 26990a12 56cd13ce
No related branches found
No related tags found
1 merge request!2Use GitLab CI to build site
Pipeline #187 passed with stage
in 1 minute and 20 seconds
*
!output
!nginx.conf
!requirements.txt
stages:
- build_content
- build_image
build_content:
stage: build_content
image: python:3
script:
- pip install -r requirements.txt
- pelican content -o output -s pelicanconf.py
artifacts:
paths:
- output/
build_image:
stage: build_image
dependencies:
- build_content
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
script:
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
only:
- tags
FROM nginx:1.17
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/ant.sr.conf
COPY output /opt/ant.sr/html
server {
listen 80;
location / {
root /opt/ant.sr/html;
error_page 404 = @files;
}
location @files {
root /opt/ant.sr/files;
error_page 404 = @urlshortener
}
location @urlshortener {
# TODO!
return 404;
}
}
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
AUTHOR = 'Anton Sarukhanov'
SITENAME = 'Anton Sarukhanov'
SITESUBTITLE = 'Full-Stack Developer'
# SITEURL = 'https://ant.sr/'
SITEURL = os.environ.get('SITEURL')
PLUGINS = ['advthumbnailer']
......
wheel
pelican==3.6.3
Markdown==2.6.6
pelican-advthumbnailer==0.5.0
piexif==1.1.3
Pillow==5.0.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment