2020-01-21 00:46:04 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-05-15 14:31:56 +00:00
|
|
|
name: default
|
2020-01-21 00:46:04 +00:00
|
|
|
|
2020-05-25 17:40:39 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2020-01-21 00:46:04 +00:00
|
|
|
steps:
|
2021-12-21 09:41:07 +00:00
|
|
|
- name: generate
|
|
|
|
image: thegeeklab/alpine-tools
|
|
|
|
commands:
|
|
|
|
- make doc
|
2020-01-21 00:46:04 +00:00
|
|
|
|
2021-12-21 09:41:07 +00:00
|
|
|
- name: sync
|
|
|
|
image: thegeeklab/git-batch
|
|
|
|
commands:
|
|
|
|
- git-batch
|
2020-01-21 00:46:04 +00:00
|
|
|
|
2021-12-21 09:41:07 +00:00
|
|
|
- name: markdownlint
|
|
|
|
image: thegeeklab/markdownlint-cli
|
|
|
|
commands:
|
|
|
|
- markdownlint 'content/**/*.md' 'README.md' -p .gitignore
|
2020-06-03 21:08:15 +00:00
|
|
|
|
2021-12-21 09:41:07 +00:00
|
|
|
- name: spellcheck
|
2022-07-16 20:57:06 +00:00
|
|
|
image: thegeeklab/alpine-tools
|
2021-12-21 09:41:07 +00:00
|
|
|
commands:
|
|
|
|
- spellchecker --no-gitignore --files 'content/**/_index.md' 'README.md' '!content/filters/*' '!content/modules/*' -d .dictionary -p spell indefinite-article syntax-urls frontmatter --frontmatter-keys title --no-suggestions
|
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
2020-06-03 21:08:15 +00:00
|
|
|
|
2023-09-27 19:26:06 +00:00
|
|
|
- name: linkcheck
|
|
|
|
image: lycheeverse/lychee
|
|
|
|
commands:
|
|
|
|
- lychee --no-progress content/ README.md
|
|
|
|
|
2021-12-21 09:41:07 +00:00
|
|
|
- name: build
|
2023-07-11 19:47:42 +00:00
|
|
|
image: thegeeklab/hugo:0.115.2
|
2021-12-21 09:41:07 +00:00
|
|
|
commands:
|
2022-03-05 16:18:37 +00:00
|
|
|
- hugo --panicOnWarning
|
2020-06-03 21:08:15 +00:00
|
|
|
|
2021-12-21 09:41:07 +00:00
|
|
|
- name: beautify
|
2022-07-16 20:57:06 +00:00
|
|
|
image: thegeeklab/alpine-tools
|
2021-12-21 09:41:07 +00:00
|
|
|
commands:
|
|
|
|
- html-beautify -r -f 'public/**/*.html'
|
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
2020-01-21 00:46:04 +00:00
|
|
|
|
2021-12-21 09:41:07 +00:00
|
|
|
- name: publish
|
2022-07-26 12:18:10 +00:00
|
|
|
image: thegeeklab/drone-s3-sync
|
2021-12-21 09:41:07 +00:00
|
|
|
settings:
|
|
|
|
access_key:
|
|
|
|
from_secret: s3_access_key
|
|
|
|
bucket: geekdocs
|
|
|
|
delete: true
|
2023-09-27 18:59:47 +00:00
|
|
|
endpoint:
|
|
|
|
from_secret: s3_endpoint
|
2021-12-21 09:41:07 +00:00
|
|
|
path_style: true
|
|
|
|
secret_key:
|
|
|
|
from_secret: s3_secret_access_key
|
|
|
|
source: public/
|
|
|
|
strip_prefix: public/
|
|
|
|
target: /${DRONE_REPO_NAME}
|
|
|
|
when:
|
|
|
|
ref:
|
2022-06-20 20:21:19 +00:00
|
|
|
- refs/heads/main
|
2021-12-21 09:41:07 +00:00
|
|
|
- refs/tags/**
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2022-06-20 20:21:19 +00:00
|
|
|
- refs/heads/main
|
2021-12-21 09:41:07 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2020-05-25 17:40:39 +00:00
|
|
|
|
2020-01-21 00:46:04 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2023-09-27 19:35:22 +00:00
|
|
|
hmac: 91a2e2a25de59da65bdc33282f47179e6f7a414985465520672516d74de26de9
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
...
|