thegeeklab/.drone.yml

133 lines
2.7 KiB
YAML
Raw Normal View History

2020-07-21 23:08:00 +02:00
---
kind: pipeline
name: build
platform:
os: linux
arch: amd64
concurrency:
limit: 1
steps:
2021-09-20 22:10:28 +02:00
- name: generate
image: thegeeklab/alpine-tools
commands:
- make doc
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'content/**/*.md' 'README.md'
- name: spellcheck
image: node:lts-alpine
commands:
- npm install -g spellchecker-cli
- spellchecker --files 'content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls frontmatter --frontmatter-keys title tags --no-suggestions
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: favicons
image: node:lts-alpine
commands:
- npm install > /dev/null
- npm run build
2021-09-20 22:10:28 +02:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: testbuild
2021-12-21 10:37:09 +01:00
image: thegeeklab/hugo:0.91.0
2021-09-20 22:10:28 +02:00
commands:
- hugo -b http://localhost/
- name: link-validation
image: thegeeklab/link-validator
commands:
- link-validator -ro
environment:
LINK_VALIDATOR_BASE_DIR: public/
- name: build
2021-12-21 10:37:09 +01:00
image: thegeeklab/hugo:0.91.0
2021-09-20 22:10:28 +02:00
commands:
- hugo
- name: beautify
image: node:lts-alpine
commands:
- npm install -g js-beautify
- html-beautify -r -f 'public/**/*.html'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: publish
image: plugins/s3-sync
settings:
access_key:
from_secret: s3_access_key
bucket: thegeeklab-root
delete: true
endpoint: https://sp.rknet.org
path_style: true
secret_key:
from_secret: s3_secret_access_key
source: public/
strip_prefix: public/
when:
ref:
- refs/heads/main
- refs/tags/**
2020-07-21 23:08:00 +02:00
trigger:
ref:
2021-09-20 22:10:28 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2020-07-21 23:08:00 +02:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2021-09-20 22:10:28 +02:00
- name: matrix
image: thegeeklab/drone-matrix
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
2021-09-22 09:45:37 +02:00
template: "Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
2021-09-20 22:10:28 +02:00
username:
from_secret: matrix_username
when:
status:
- success
- failure
2020-07-21 23:08:00 +02:00
trigger:
ref:
2021-09-20 22:10:28 +02:00
- refs/heads/main
- refs/tags/**
2020-07-21 23:08:00 +02:00
status:
2021-09-20 22:10:28 +02:00
- success
- failure
2020-07-21 23:08:00 +02:00
depends_on:
2021-09-20 22:10:28 +02:00
- build
2020-07-21 23:08:00 +02:00
---
kind: signature
hmac: 305e8e4eb11134ee58a5fb77a6ae25686daa5fc0007ebba33923f41f338999a4
2020-07-21 23:08:00 +02:00
...