WIP: Get Gitlab CI to deploy for us.
This commit is contained in:
parent
e03ca1673e
commit
dcfb46c8a3
@ -1,18 +1,29 @@
|
|||||||
image: ruby:2.4.2
|
image: ruby:2.4.2
|
||||||
|
|
||||||
variables:
|
|
||||||
GEMSPEC: "autonomic.gemspec"
|
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- site-build
|
- build
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
site-builder:
|
build:
|
||||||
stage: site-build
|
stage: build
|
||||||
before_script:
|
before_script:
|
||||||
- gem install jekyll
|
- gem install jekyll
|
||||||
script:
|
script:
|
||||||
- jekyll build
|
- jekyll build -d public
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- dist
|
- public
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
stage: deploy
|
||||||
|
before_script:
|
||||||
|
- gem install jekyll
|
||||||
|
script:
|
||||||
|
- jekyll build -d public
|
||||||
|
- ./bin/deploy
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
# only:
|
||||||
|
# - master
|
||||||
|
# - tags
|
||||||
|
27
bin/deploy
Executable file
27
bin/deploy
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
GITUSERNAME="autonomicgitlabci"
|
||||||
|
GITUSEREMAIL="autonomicgitlabci@nowhere.com"
|
||||||
|
DEPLOYSCRIPT="https://github.com/X1011/git-directory-deploy/raw/master/deploy.sh"
|
||||||
|
|
||||||
|
export GIT_DEPLOY_DIR="public"
|
||||||
|
export GIT_DEPLOY_BRANCH="production"
|
||||||
|
export GIT_DEPLOY_REPO="git@gitlab.com:autonomic-cooperative/autonomic-cooperative.gitlab.io.git"
|
||||||
|
|
||||||
|
apt-get update -y
|
||||||
|
apt-get install -yqq wget openssh-client
|
||||||
|
|
||||||
|
wget $DEPLOYSCRIPT && chmod +x deploy.sh
|
||||||
|
|
||||||
|
git config --global user.email $GITUSEREMAIL
|
||||||
|
git config --global user.name $GITUSERNAME
|
||||||
|
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
eval "$(ssh-agent -s)"
|
||||||
|
ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
|
echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||||
|
|
||||||
|
# ./deploy.sh -m "Git tag: $(git describe --exact-match HEAD)"
|
||||||
|
./deploy.sh -m "Hello, World!"
|
||||||
|
|
||||||
|
rm -Rfv .ssh
|
Reference in New Issue
Block a user