thegeeklab/.drone.yml

133 lines
2.9 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
2022-07-16 22:32:20 +02:00
image: thegeeklab/alpine-tools
2021-09-20 22:10:28 +02:00
commands:
- 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
2022-11-05 08:02:32 +01:00
image: thegeeklab/hugo:0.105.0
2021-09-20 22:10:28 +02:00
commands:
2022-05-20 15:12:44 +02:00
- hugo --panicOnWarning -b http://localhost:8000/
2021-09-20 22:10:28 +02:00
- name: link-validation
image: thegeeklab/link-validator
commands:
- link-validator --color=always --rate-limit 10 -e https://matrix.to.* -e https://www.graylog.org.* -e https://go2docs.graylog.org.* -e https://unsplash.com.*
2021-09-20 22:10:28 +02:00
environment:
LINK_VALIDATOR_BASE_DIR: public/
2022-11-04 10:15:31 +01:00
LINK_VALIDATOR_RETRIES: 3
2021-09-20 22:10:28 +02:00
- name: build
2022-11-05 08:02:32 +01:00
image: thegeeklab/hugo:0.105.0
2021-09-20 22:10:28 +02:00
commands:
2022-03-05 17:13:41 +01:00
- hugo --panicOnWarning
2021-09-20 22:10:28 +02:00
- 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: thegeeklab/drone-s3-sync:2
2021-09-20 22:10:28 +02:00
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
2023-02-08 21:31:23 +01:00
template: "Status: **{{ .Build.Status }}**<br/> Build: [{{ .Repo.Owner }}/{{ .Repo.Name }}]({{ .Build.Link }}){{ if .Build.Branch }} ({{ .Build.Branch }}){{ end }} 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: 80fab874fcbde9838790fb08550285ea291b5716ccd1032c429f28a71dc99295
2020-07-21 23:08:00 +02:00
...