2021-09-11 11:06:33 +00:00
|
|
|
local PipelineDocs = {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'docs',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
concurrency: {
|
|
|
|
limit: 1,
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'assets',
|
|
|
|
image: 'thegeeklab/alpine-tools',
|
|
|
|
commands: [
|
|
|
|
'make doc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'sync',
|
|
|
|
image: 'thegeeklab/git-batch',
|
|
|
|
commands: [
|
|
|
|
'git-batch',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'markdownlint',
|
|
|
|
image: 'thegeeklab/markdownlint-cli',
|
|
|
|
commands: [
|
2021-09-11 11:08:58 +00:00
|
|
|
"markdownlint 'content/**/*.md' 'README.md' 'CONTRIBUTING.md'",
|
2021-09-11 11:06:33 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'spellcheck',
|
|
|
|
image: 'node:lts-alpine',
|
|
|
|
commands: [
|
|
|
|
'npm install -g spellchecker-cli',
|
2021-09-11 11:08:58 +00:00
|
|
|
"spellchecker --files 'content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions",
|
2021-09-11 11:06:33 +00:00
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
FORCE_COLOR: true,
|
|
|
|
NPM_CONFIG_LOGLEVEL: 'error',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'testbuild',
|
2021-12-21 09:29:16 +00:00
|
|
|
image: 'thegeeklab/hugo:0.91.0',
|
2021-09-11 11:06:33 +00:00
|
|
|
commands: [
|
2021-09-11 11:08:58 +00:00
|
|
|
'hugo -b http://localhost/',
|
2021-09-11 11:06:33 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'link-validation',
|
|
|
|
image: 'thegeeklab/link-validator',
|
|
|
|
commands: [
|
|
|
|
'link-validator -ro',
|
|
|
|
],
|
|
|
|
environment: {
|
2021-09-11 11:08:58 +00:00
|
|
|
LINK_VALIDATOR_BASE_DIR: 'public',
|
2021-09-11 11:06:33 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'build',
|
2021-12-21 09:29:16 +00:00
|
|
|
image: 'thegeeklab/hugo:0.91.0',
|
2021-09-11 11:06:33 +00:00
|
|
|
commands: [
|
2021-09-11 11:08:58 +00:00
|
|
|
'hugo',
|
2021-09-11 11:06:33 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'beautify',
|
|
|
|
image: 'node:lts-alpine',
|
|
|
|
commands: [
|
|
|
|
'npm install -g js-beautify',
|
2021-09-11 11:08:58 +00:00
|
|
|
"html-beautify -r -f 'public/**/*.html'",
|
2021-09-11 11:06:33 +00:00
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
FORCE_COLOR: true,
|
|
|
|
NPM_CONFIG_LOGLEVEL: 'error',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'publish',
|
|
|
|
image: 'plugins/s3-sync',
|
|
|
|
settings: {
|
|
|
|
access_key: { from_secret: 's3_access_key' },
|
|
|
|
bucket: 'geekdocs',
|
|
|
|
delete: true,
|
|
|
|
endpoint: 'https://sp.rknet.org',
|
|
|
|
path_style: true,
|
|
|
|
secret_key: { from_secret: 's3_secret_access_key' },
|
2021-09-11 11:08:58 +00:00
|
|
|
source: 'public/',
|
|
|
|
strip_prefix: 'public/',
|
2021-09-11 11:06:33 +00:00
|
|
|
target: '/${DRONE_REPO_NAME}',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
[
|
|
|
|
PipelineDocs,
|
|
|
|
]
|