drone-plugin-index/.drone.yml

81 lines
1.7 KiB
YAML
Raw Normal View History

2021-09-11 13:06:33 +02:00
---
concurrency:
limit: 1
kind: pipeline
name: docs
platform:
arch: amd64
os: linux
steps:
- commands:
- make doc
image: thegeeklab/alpine-tools
name: assets
- commands:
- git-batch
image: thegeeklab/git-batch
name: sync
- commands:
2021-09-11 13:08:58 +02:00
- markdownlint 'content/**/*.md' 'README.md' 'CONTRIBUTING.md'
2021-09-11 13:06:33 +02:00
image: thegeeklab/markdownlint-cli
name: markdownlint
- commands:
- npm install -g spellchecker-cli
2021-09-11 13:08:58 +02:00
- spellchecker --files 'content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article
syntax-urls --no-suggestions
2021-09-11 13:06:33 +02:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
image: node:lts-alpine
name: spellcheck
- commands:
2021-09-11 13:08:58 +02:00
- hugo -b http://localhost/
2021-09-11 13:06:33 +02:00
image: thegeeklab/hugo:0.83.1
name: testbuild
- commands:
- link-validator -ro
environment:
2021-09-11 13:08:58 +02:00
LINK_VALIDATOR_BASE_DIR: public
2021-09-11 13:06:33 +02:00
image: thegeeklab/link-validator
name: link-validation
- commands:
2021-09-11 13:08:58 +02:00
- hugo
2021-09-11 13:06:33 +02:00
image: thegeeklab/hugo:0.83.1
name: build
- commands:
- npm install -g js-beautify
2021-09-11 13:08:58 +02:00
- html-beautify -r -f 'public/**/*.html'
2021-09-11 13:06:33 +02:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
image: node:lts-alpine
name: beautify
- image: plugins/s3-sync
name: publish
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 13:08:58 +02:00
source: public/
strip_prefix: public/
2021-09-11 13:06:33 +02:00
target: /${DRONE_REPO_NAME}
when:
ref:
- refs/heads/main
- refs/tags/**
trigger:
ref:
- refs/heads/main
- refs/tags/**
- refs/pull/**
---
kind: signature
2021-09-11 13:08:58 +02:00
hmac: 79ea19f08d85bbcc0b69bd8b04a9f9b092acfcca1e4eb530451f5f8055db7217
2021-09-11 13:06:33 +02:00
...