uci-doc/.drone.yml

169 lines
3.4 KiB
YAML
Raw Normal View History

2020-01-12 07:09:50 -08:00
---
kind: pipeline
name: build
2020-01-12 07:13:37 -08:00
platform:
os: linux
arch: amd64
2020-01-12 07:09:50 -08:00
steps:
- name: assets
image: node
commands:
- npm install -g gulp -s
- npm install -s
- gulp default
- name: test
image: klakegg/hugo:0.69.0-ext-alpine
2020-01-12 07:09:50 -08:00
commands:
2020-01-12 07:49:37 -08:00
- cd exampleSite/
- mkdir themes/ && ln -s ../../. themes/hugo-geekdoc && hugo-official
2020-01-12 07:09:50 -08:00
- name: build
image: alpine
commands:
- mkdir dist/
2020-02-17 00:08:55 -08:00
- echo "${DRONE_TAG:-latest}" > VERSION
- 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*' --exclude='local*'
2020-01-12 07:09:50 -08:00
- name: checksum
image: alpine
commands:
2020-01-12 07:13:37 -08:00
- cd dist/ && sha256sum * > ../sha256sum.txt
2020-01-12 07:09:50 -08:00
- name: publish
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
2020-01-12 07:13:37 -08:00
- dist/*
2020-01-12 07:09:50 -08:00
- sha256sum.txt
note: CHANGELOG.md
overwrite: true
2020-01-12 07:13:37 -08:00
title: ${DRONE_TAG}
2020-01-12 07:09:50 -08:00
when:
ref:
2020-01-12 07:13:37 -08:00
- refs/tags/**
2020-01-12 07:09:50 -08:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
2020-01-12 07:13:37 -08:00
2020-01-12 07:44:10 -08:00
---
kind: pipeline
name: docs
2020-01-12 14:35:34 -08:00
concurrency:
limit: 1
2020-01-12 07:44:10 -08:00
platform:
os: linux
arch: amd64
steps:
- name: assets
image: byrnedo/alpine-curl
2020-01-12 07:44:10 -08:00
commands:
- mkdir -p exampleSite/themes/hugo-geekdoc/
- curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C exampleSite/themes/hugo-geekdoc/ --strip-components=1
2020-01-12 07:44:10 -08:00
- name: test
image: klakegg/hugo:0.69.0-ext-alpine
2020-01-12 07:44:10 -08:00
commands:
- cd exampleSite/ && hugo-official
2020-01-12 08:58:34 -08:00
- name: freeze
2020-02-07 14:41:34 -08:00
image: appleboy/drone-ssh:1.5.5
2020-01-12 08:58:34 -08:00
settings:
host:
from_secret: ssh_host
key:
from_secret: ssh_key
script:
2020-01-14 14:20:03 -08:00
- cp -R /var/www/virtual/geeklab/html/geekdocs.de/ /var/www/virtual/geeklab/html/geekdocs_freeze/
- ln -sfn /var/www/virtual/geeklab/html/geekdocs_freeze /var/www/virtual/geeklab/geekdocs.de
2020-01-12 08:58:34 -08:00
username:
from_secret: ssh_username
- name: publish
image: appleboy/drone-scp
settings:
host:
from_secret: ssh_host
key:
from_secret: ssh_key
rm: true
2020-01-12 09:00:21 -08:00
source: exampleSite/public/*
2020-01-12 09:10:40 -08:00
strip_components: 2
2020-01-14 13:42:16 -08:00
target: /var/www/virtual/geeklab/html/geekdocs.de/
2020-01-12 08:58:34 -08:00
username:
from_secret: ssh_username
- name: cleanup
2020-02-07 14:41:34 -08:00
image: appleboy/drone-ssh:1.5.5
2020-01-12 08:58:34 -08:00
settings:
host:
from_secret: ssh_host
key:
from_secret: ssh_key
script:
2020-01-14 13:42:16 -08:00
- ln -sfn /var/www/virtual/geeklab/html/geekdocs.de /var/www/virtual/geeklab/geekdocs.de
2020-01-14 14:20:03 -08:00
- rm -rf /var/www/virtual/geeklab/html/geekdocs_freeze/
2020-01-12 08:58:34 -08:00
username:
from_secret: ssh_username
2020-01-12 07:44:10 -08:00
trigger:
ref:
2020-01-13 15:34:33 -08:00
- refs/tags/**
2020-01-12 07:44:10 -08:00
depends_on:
- build
2020-01-12 08:29:21 -08: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 07:13:37 -08:00
---
kind: signature
2020-04-14 16:12:54 -07:00
hmac: 619b71bf888e764e4f97ac00d707b963284f3619ee2e9c47851e9a63f16df6bc
2020-01-12 07:13:37 -08:00
...