2020-01-12 15:09:50 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build
|
|
|
|
|
2020-01-12 15:13:37 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2020-01-12 15:09:50 +00:00
|
|
|
steps:
|
|
|
|
- name: assets
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- npm install -g gulp -s
|
|
|
|
- npm install -s
|
|
|
|
- gulp default
|
|
|
|
|
|
|
|
- name: test
|
|
|
|
image: klakegg/hugo:0.59.1-ext-alpine
|
|
|
|
commands:
|
2020-01-12 15:49:37 +00:00
|
|
|
- cd exampleSite/
|
|
|
|
- mkdir themes/ && ln -s ../../. themes/hugo-geekdoc && hugo-official
|
2020-01-12 15:09:50 +00:00
|
|
|
|
|
|
|
- name: build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- mkdir dist/
|
2020-01-12 15:17:31 +00:00
|
|
|
- tar -zcvf dist/hugo-geekdoc.tar.gz . --exclude='.git*' --exclude='.drone*' --exclude='dist' --exclude='.git*' --exclude='example*' --exclude='src' --exclude='gulp*' --exclude='package*' --exclude='node*'
|
2020-01-12 15:09:50 +00:00
|
|
|
|
|
|
|
- name: checksum
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-01-12 15:13:37 +00:00
|
|
|
- cd dist/ && sha256sum * > ../sha256sum.txt
|
2020-01-12 15:44:10 +00:00
|
|
|
- cd ../ && ls -lh dist/
|
2020-01-12 15:18:28 +00:00
|
|
|
- cat sha256sum.txt
|
2020-01-12 15:09:50 +00:00
|
|
|
|
|
|
|
- name: publish
|
|
|
|
image: plugins/github-release
|
|
|
|
settings:
|
|
|
|
api_key:
|
|
|
|
from_secret: github_token
|
|
|
|
files:
|
2020-01-12 15:13:37 +00:00
|
|
|
- dist/*
|
2020-01-12 15:09:50 +00:00
|
|
|
- sha256sum.txt
|
|
|
|
note: CHANGELOG.md
|
|
|
|
overwrite: true
|
2020-01-12 15:13:37 +00:00
|
|
|
title: ${DRONE_TAG}
|
2020-01-12 15:09:50 +00:00
|
|
|
when:
|
|
|
|
ref:
|
2020-01-12 15:13:37 +00:00
|
|
|
- refs/tags/**
|
2020-01-12 15:09:50 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2020-01-12 15:13:37 +00:00
|
|
|
|
2020-01-12 15:44:10 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docs
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: assets
|
2020-01-12 15:47:09 +00:00
|
|
|
image: byrnedo/alpine-curl
|
2020-01-12 15:44:10 +00:00
|
|
|
commands:
|
|
|
|
- mkdir -p exampleSite/themes/hugo-geekdoc/
|
2020-01-12 15:58:02 +00:00
|
|
|
- curl -L https://github.com/xoxys/hugo-geekdoc/releases/download/v0.1.0/hugo-geekdoc.tar.gz | tar -xz -C exampleSite/themes/hugo-geekdoc/ --strip-components=1
|
2020-01-12 15:44:10 +00:00
|
|
|
|
|
|
|
- name: test
|
|
|
|
image: klakegg/hugo:0.59.1-ext-alpine
|
|
|
|
commands:
|
|
|
|
- cd exampleSite/ && hugo-official
|
|
|
|
|
2020-01-12 16:58:34 +00:00
|
|
|
- name: freeze
|
|
|
|
pull: always
|
|
|
|
image: appleboy/drone-ssh
|
|
|
|
settings:
|
|
|
|
host:
|
|
|
|
from_secret: ssh_host
|
|
|
|
key:
|
|
|
|
from_secret: ssh_key
|
|
|
|
script:
|
|
|
|
- cp -R /var/www/virtual/geeklab/html/docs.geeklabor.de/ /var/www/virtual/geeklab/html/docs_freeze/
|
|
|
|
- ln -sfn /var/www/virtual/geeklab/html/docs_freeze /var/www/virtual/geeklab/docs.geeklabor.de
|
|
|
|
username:
|
|
|
|
from_secret: ssh_username
|
|
|
|
|
|
|
|
- name: publish
|
|
|
|
pull: always
|
|
|
|
image: appleboy/drone-scp
|
|
|
|
settings:
|
|
|
|
host:
|
|
|
|
from_secret: ssh_host
|
|
|
|
key:
|
|
|
|
from_secret: ssh_key
|
|
|
|
rm: true
|
2020-01-12 17:00:21 +00:00
|
|
|
source: exampleSite/public/*
|
2020-01-12 17:10:40 +00:00
|
|
|
strip_components: 2
|
2020-01-12 16:58:34 +00:00
|
|
|
target: /var/www/virtual/geeklab/html/docs.geeklabor.de/
|
|
|
|
username:
|
|
|
|
from_secret: ssh_username
|
|
|
|
|
|
|
|
- name: cleanup
|
|
|
|
pull: always
|
|
|
|
image: appleboy/drone-ssh
|
|
|
|
settings:
|
|
|
|
host:
|
|
|
|
from_secret: ssh_host
|
|
|
|
key:
|
|
|
|
from_secret: ssh_key
|
|
|
|
script:
|
|
|
|
- ln -sfn /var/www/virtual/geeklab/html/docs.geeklabor.de /var/www/virtual/geeklab/docs.geeklabor.de
|
|
|
|
- rm -rf /var/www/virtual/geeklab/html/docs_freeze/
|
|
|
|
username:
|
|
|
|
from_secret: ssh_username
|
|
|
|
|
2020-01-12 15:44:10 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
|
2020-01-12 15:47:09 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
2020-01-12 16:29:21 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
|
|
|
homeserver:
|
|
|
|
from_secret: matrix_homeserver
|
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
|
|
|
roomid:
|
|
|
|
from_secret: matrix_roomid
|
|
|
|
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/**
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
- docs
|
|
|
|
|
2020-01-12 15:13:37 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2020-01-12 17:10:40 +00:00
|
|
|
hmac: 682a950289f296ee8f25875e689221b051cc796a364175b9c3b0e45d9972a4d6
|
2020-01-12 15:13:37 +00:00
|
|
|
|
|
|
|
...
|