mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
commit
51a712d7ef
46
.circleci/config.yml
Normal file
46
.circleci/config.yml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
version: 2
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
branches:
|
||||||
|
ignore:
|
||||||
|
- gh-pages
|
||||||
|
docker:
|
||||||
|
- image: circleci/python:3.6
|
||||||
|
working_directory: ~/repo
|
||||||
|
environment:
|
||||||
|
- SOURCE_BRANCH: master
|
||||||
|
- TARGET_BRANCH: gh-pages
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Install deps
|
||||||
|
command: |
|
||||||
|
python -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
pip install --user -r requirements.txt
|
||||||
|
- deploy:
|
||||||
|
name: Deploy
|
||||||
|
command: |
|
||||||
|
if [ $CIRCLE_BRANCH == $SOURCE_BRANCH ]; then
|
||||||
|
git config --global user.email $GH_EMAIL
|
||||||
|
git config --global user.name $GH_NAME
|
||||||
|
|
||||||
|
git clone $CIRCLE_REPOSITORY_URL out
|
||||||
|
|
||||||
|
cd out
|
||||||
|
git checkout $TARGET_BRANCH || git checkout --orphan $TARGET_BRANCH
|
||||||
|
git rm -rf .
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
make publish
|
||||||
|
|
||||||
|
cp -a output/. out/.
|
||||||
|
|
||||||
|
mkdir -p out/.circleci && cp -a .circleci/. out/.circleci/.
|
||||||
|
cd out
|
||||||
|
|
||||||
|
git add -A
|
||||||
|
git commit -m "Automated deployment to GitHub Pages: ${CIRCLE_SHA1}" --allow-empty
|
||||||
|
|
||||||
|
git push origin $TARGET_BRANCH
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user