thegeeklab/.drone.yml

131 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
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
2023-07-11 21:03:27 +02:00
image: thegeeklab/hugo:0.115.2
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
2023-09-27 21:52:49 +02:00
image: lycheeverse/lychee
2021-09-20 22:10:28 +02:00
commands:
2023-09-27 21:52:49 +02:00
- lychee --no-progress --format detailed content/ README.md
2021-09-20 22:10:28 +02:00
- name: build
2023-07-11 21:03:27 +02:00
image: thegeeklab/hugo:0.115.2
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
2023-09-27 21:52:49 +02:00
endpoint:
from_secret: s3_endpoint
2021-09-20 22:10:28 +02:00
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
2023-09-27 21:52:49 +02:00
hmac: 899894369ae1a6044074429d797c0fb8a558ec7bf5535f25fffc8266064b0ea1
2020-07-21 23:08:00 +02:00
...