mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2024-11-05 08:23:14 +00:00
30 lines
529 B
YAML
30 lines
529 B
YAML
|
kind: pipeline
|
||
|
type: exec
|
||
|
name: Build and Deploy
|
||
|
|
||
|
steps:
|
||
|
- name: Prepare
|
||
|
commands:
|
||
|
- eval $(ssh-agent -s)
|
||
|
- ssh-add - <<< "${SSH_PRIVATE_KEY}"
|
||
|
environment:
|
||
|
SSH_PRIVATE_KEY:
|
||
|
from_secret: SSH_PRIVATE_KEY
|
||
|
|
||
|
- name: Build
|
||
|
commands:
|
||
|
- hugo --gc
|
||
|
|
||
|
- name: Deploy
|
||
|
commands:
|
||
|
- scp -oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null -r public/* deployer@selfprivacy.org:/var/www/selfprivacy.org
|
||
|
|
||
|
trigger:
|
||
|
event:
|
||
|
- push
|
||
|
branch:
|
||
|
- master
|
||
|
|
||
|
node:
|
||
|
server: builder
|