2020-10-27 13:52:43 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: lint
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: markdown lint
|
|
|
|
image: pipelinecomponents/markdownlint:latest
|
|
|
|
commands:
|
2020-10-27 14:25:00 +01:00
|
|
|
- mdl .
|
2020-10-27 16:26:24 +01:00
|
|
|
|
2020-10-27 17:09:24 +01:00
|
|
|
- name: build pelican
|
2020-10-27 16:26:24 +01:00
|
|
|
image: apihackers/pelican
|
|
|
|
commands:
|
|
|
|
- pelican content -o output -s pelicanconf.py
|
2020-10-27 17:02:55 +01:00
|
|
|
- ls output
|
|
|
|
|
|
|
|
- name: deploy staging
|
|
|
|
image: kroniak/ssh-client
|
|
|
|
environment:
|
|
|
|
DEPLOY_USER:
|
|
|
|
from_secret: deploy_user
|
|
|
|
DEPLOY_HOST:
|
|
|
|
from_secret: deploy_host
|
|
|
|
DEPLOY_KEY:
|
|
|
|
from_secret: deploy_key
|
|
|
|
commands:
|
|
|
|
- echo "deploy $DEPLOY_USER@$DEPLOY_HOST"
|
|
|
|
- echo "$DEPLOY_KEY" | sed 's/!/\n/g' > deploy_key
|
|
|
|
- chmod 0600 deploy_key
|
|
|
|
- cat deploy_key
|
|
|
|
- ssh -i deploy_key -o StrictHostKeyChecking=no $DEPLOY_USER@$DEPLOY_HOST rm -Rf /srv/http/blog-lan/output/
|
|
|
|
- scp -i deploy_key -o StrictHostKeyChecking=no output/* $DEPLOY_USER@$DEPLOY_HOST:/srv/http/blog-lan/output/
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- master
|
2020-10-27 16:26:24 +01:00
|
|
|
|
|
|
|
#- name: deploy staging
|
|
|
|
# image: kroniak/ssh-client
|
|
|
|
# environment:
|
|
|
|
# DEPLOY_USER:
|
|
|
|
# from_secret: deploy_user
|
|
|
|
# DEPLOY_HOST:
|
|
|
|
# from_secret: deploy_host
|
|
|
|
# DEPLOY_KEY:
|
|
|
|
# from_secret: deploy_key
|
|
|
|
# commands:
|
|
|
|
# - echo "deploy $DEPLOY_USER@$DEPLOY_HOST"
|
|
|
|
# - echo "$DEPLOY_KEY" | sed 's/!/\n/g' > deploy_key
|
|
|
|
# - chmod 0600 deploy_key
|
|
|
|
# - cat deploy_key
|
|
|
|
# - scp -i deploy_key -o StrictHostKeyChecking=no output/* $DEPLOY_USER@$DEPLOY_HOST:/srv/http/blog/output/
|
|
|
|
# when:
|
|
|
|
# branch:
|
|
|
|
# include:
|
|
|
|
# - master
|