Robert Kaussow
f37a09e2cd
Some checks are pending
continuous-integration/drone/push Build is pending
74 lines
1.6 KiB
YAML
74 lines
1.6 KiB
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
concurrency:
|
|
limit: 1
|
|
|
|
steps:
|
|
- name: assets
|
|
image: byrnedo/alpine-curl
|
|
commands:
|
|
- mkdir -p themes/hugo-geekdoc/
|
|
- curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C themes/hugo-geekdoc/ --strip-components=1
|
|
|
|
- name: sync
|
|
image: xoxys/git-batch:latest
|
|
commands:
|
|
- git-batch
|
|
|
|
- name: build
|
|
image: klakegg/hugo:0.59.1-ext-alpine
|
|
commands:
|
|
- hugo-official
|
|
|
|
- name: freeze
|
|
image: appleboy/drone-ssh:1.5.5
|
|
settings:
|
|
host:
|
|
from_secret: ssh_host
|
|
key:
|
|
from_secret: ssh_key
|
|
script:
|
|
- cp -R /var/www/virtual/geeklab/html/galaxy.geekdocs.de/ /var/www/virtual/geeklab/html/galaxy_freeze/
|
|
- ln -sfn /var/www/virtual/geeklab/html/galaxy_freeze /var/www/virtual/geeklab/galaxy.geekdocs.de
|
|
username:
|
|
from_secret: ssh_username
|
|
|
|
- name: publish
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host:
|
|
from_secret: ssh_host
|
|
key:
|
|
from_secret: ssh_key
|
|
rm: true
|
|
source: public/*
|
|
strip_components: 1
|
|
target: /var/www/virtual/geeklab/html/galaxy.geekdocs.de/
|
|
username:
|
|
from_secret: ssh_username
|
|
|
|
- name: cleanup
|
|
image: appleboy/drone-ssh:1.5.5
|
|
settings:
|
|
host:
|
|
from_secret: ssh_host
|
|
key:
|
|
from_secret: ssh_key
|
|
script:
|
|
- ln -sfn /var/www/virtual/geeklab/html/galaxy.geekdocs.de /var/www/virtual/geeklab/galaxy.geekdocs.de
|
|
- rm -rf /var/www/virtual/geeklab/html/galaxy_freeze/
|
|
username:
|
|
from_secret: ssh_username
|
|
|
|
trigger:
|
|
ref:
|
|
- refs/heads/master
|
|
- refs/pull/**
|
|
---
|
|
kind: signature
|
|
hmac: d65933ea82b8ca4838f06d6a3d0d2db606d7fabf092a64c63027884489698cd7
|
|
|
|
...
|