2020-01-21 00:46:04 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-05-15 14:26:51 +00:00
|
|
|
name: test
|
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-01-18 19:07:07 +00:00
|
|
|
- name: generate
|
2020-11-29 20:57:15 +00:00
|
|
|
image: thegeeklab/alpine-tools
|
2020-01-21 00:46:04 +00:00
|
|
|
commands:
|
2021-01-18 19:07:07 +00:00
|
|
|
- make doc
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
- name: sync
|
2020-09-27 21:00:39 +00:00
|
|
|
image: thegeeklab/git-batch
|
2020-01-21 00:46:04 +00:00
|
|
|
commands:
|
2020-05-25 17:40:39 +00:00
|
|
|
- git-batch
|
2020-01-21 00:46:04 +00:00
|
|
|
|
2020-06-03 21:08:15 +00:00
|
|
|
- name: markdownlint
|
2021-01-18 19:07:07 +00:00
|
|
|
image: thegeeklab/markdownlint-cli
|
2020-06-03 21:08:15 +00:00
|
|
|
commands:
|
|
|
|
- markdownlint 'content/**/*.md' 'README.md' -p .gitignore
|
|
|
|
|
|
|
|
- name: spellcheck
|
|
|
|
image: node:lts-alpine
|
|
|
|
commands:
|
|
|
|
- npm install -g spellchecker-cli
|
2020-06-07 15:41:22 +00:00
|
|
|
- spellchecker --no-gitignore --files 'content/**/_index.md' 'README.md' '!content/filters/*' '!content/modules/*' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
|
2020-06-03 21:08:15 +00:00
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
|
|
|
|
|
|
|
- name: testbuild
|
2021-05-06 20:50:17 +00:00
|
|
|
image: thegeeklab/hugo:0.83.1
|
2020-06-03 21:08:15 +00:00
|
|
|
commands:
|
2021-05-06 20:50:17 +00:00
|
|
|
- hugo -b http://localhost/
|
2020-06-03 21:08:15 +00:00
|
|
|
|
|
|
|
- name: link-validation
|
2020-09-27 21:00:39 +00:00
|
|
|
image: thegeeklab/link-validator
|
2020-06-03 21:08:15 +00:00
|
|
|
commands:
|
|
|
|
- link-validator -ro
|
|
|
|
environment:
|
|
|
|
LINK_VALIDATOR_BASE_DIR: public
|
|
|
|
|
2021-05-15 14:26:51 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
limit: 1
|
|
|
|
|
|
|
|
steps:
|
2020-01-21 00:46:04 +00:00
|
|
|
- name: build
|
2021-05-06 20:50:17 +00:00
|
|
|
image: thegeeklab/hugo:0.83.1
|
2020-06-03 21:08:15 +00:00
|
|
|
commands:
|
2021-05-06 20:50:17 +00:00
|
|
|
- hugo
|
2020-06-03 21:08:15 +00:00
|
|
|
|
|
|
|
- name: beautify
|
|
|
|
image: node:lts-alpine
|
2020-01-21 00:46:04 +00:00
|
|
|
commands:
|
2020-06-03 21:08:15 +00:00
|
|
|
- npm install -g js-beautify
|
|
|
|
- html-beautify -r -f 'public/**/*.html'
|
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
- name: publish
|
2020-05-25 18:54:19 +00:00
|
|
|
image: plugins/s3-sync
|
2020-01-21 00:46:04 +00:00
|
|
|
settings:
|
2020-05-25 17:40:39 +00:00
|
|
|
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
|
2020-05-25 18:59:20 +00:00
|
|
|
source: public/
|
2020-05-25 17:46:34 +00:00
|
|
|
strip_prefix: public/
|
2020-05-25 17:44:21 +00:00
|
|
|
target: /${DRONE_REPO_NAME}
|
2021-05-15 14:22:00 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
2021-05-15 14:26:51 +00:00
|
|
|
- refs/tags/**
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-01-21 00:48:38 +00:00
|
|
|
- refs/heads/master
|
2021-05-15 14:26:51 +00:00
|
|
|
- refs/tags/**
|
2020-01-21 00:46:04 +00:00
|
|
|
- refs/pull/**
|
2020-05-25 17:40:39 +00:00
|
|
|
|
2021-05-15 14:27:40 +00:00
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
2020-01-21 00:46:04 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2021-05-15 14:27:40 +00:00
|
|
|
hmac: 910ec951b9af589357bd95d434bc00ea4721b767a3675df3388b01d58ee2e2be
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
...
|