2020-01-21 00:46:04 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
2020-05-25 17:40:39 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2020-01-21 00:46:04 +00:00
|
|
|
concurrency:
|
|
|
|
limit: 1
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: assets
|
|
|
|
image: byrnedo/alpine-curl
|
|
|
|
commands:
|
2020-01-22 10:59:58 +00:00
|
|
|
- mkdir -p themes/hugo-geekdoc/
|
|
|
|
- curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C themes/hugo-geekdoc/ --strip-components=1
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
- name: sync
|
|
|
|
image: xoxys/git-batch:latest
|
|
|
|
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
|
|
|
|
image: node:lts-alpine
|
|
|
|
commands:
|
|
|
|
- npm install -g markdownlint-cli
|
|
|
|
- markdownlint 'content/**/*.md' 'README.md' -p .gitignore
|
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
|
|
|
|
|
|
|
- name: spellcheck
|
|
|
|
image: node:lts-alpine
|
|
|
|
commands:
|
|
|
|
- npm install -g spellchecker-cli
|
2020-06-07 15:23:42 +00:00
|
|
|
- spellchecker --no-gitignore --files 'content/**/_index.md' 'README.md' -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
|
|
|
|
image: klakegg/hugo:0.72.0-ext-alpine
|
|
|
|
commands:
|
2020-06-03 21:32:36 +00:00
|
|
|
- hugo-official -b http://localhost/
|
2020-06-03 21:08:15 +00:00
|
|
|
|
|
|
|
- name: link-validation
|
|
|
|
image: xoxys/link-validator
|
|
|
|
commands:
|
|
|
|
- link-validator -ro
|
|
|
|
environment:
|
|
|
|
LINK_VALIDATOR_BASE_DIR: public
|
|
|
|
|
2020-01-21 00:46:04 +00:00
|
|
|
- name: build
|
2020-06-03 21:08:15 +00:00
|
|
|
image: klakegg/hugo:0.72.0-ext-alpine
|
|
|
|
commands:
|
2020-06-03 21:32:36 +00:00
|
|
|
- hugo-official
|
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}
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-01-21 00:48:38 +00:00
|
|
|
- refs/heads/master
|
2020-01-21 00:46:04 +00:00
|
|
|
- refs/pull/**
|
2020-05-25 17:40:39 +00:00
|
|
|
|
2020-01-21 00:46:04 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2020-06-07 15:24:58 +00:00
|
|
|
hmac: 7b66fdb6855e25d5f417e81825a96c15eff0e2ee0d4278ba66875392df99d1c4
|
2020-01-21 00:46:04 +00:00
|
|
|
|
|
|
|
...
|