drone-plugin-index/.drone.yml

92 lines
1.9 KiB
YAML
Raw Normal View History

2021-09-11 13:06:33 +02:00
---
kind: pipeline
name: docs
2021-12-21 10:29:16 +01:00
2021-09-11 13:06:33 +02:00
platform:
os: linux
2021-12-21 10:29:16 +01:00
arch: amd64
concurrency:
limit: 1
2021-09-11 13:06:33 +02:00
steps:
2021-12-21 10:29:16 +01:00
- 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:
- markdownlint 'content/**/*.md' 'README.md' 'CONTRIBUTING.md'
- name: spellcheck
2022-07-17 20:41:49 +02:00
image: thegeeklab/alpine-tools
2021-12-21 10:29:16 +01:00
commands:
- spellchecker --files 'content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: testbuild
2022-11-05 08:05:29 +01:00
image: thegeeklab/hugo:0.105.0
2021-12-21 10:29:16 +01:00
commands:
2022-05-20 15:19:27 +02:00
- hugo --panicOnWarning -b http://localhost:8000/
2021-12-21 10:29:16 +01:00
- name: link-validation
image: thegeeklab/link-validator
commands:
2022-11-04 10:19:44 +01:00
- link-validator --color=always --rate-limit 10
2021-12-21 10:29:16 +01:00
environment:
LINK_VALIDATOR_BASE_DIR: public
2022-11-04 09:05:23 +01:00
LINK_VALIDATOR_RETRIES: 3
2021-12-21 10:29:16 +01:00
- name: build
2022-11-05 08:05:29 +01:00
image: thegeeklab/hugo:0.105.0
2021-12-21 10:29:16 +01:00
commands:
2022-03-05 16:59:43 +01:00
- hugo --panicOnWarning
2021-12-21 10:29:16 +01:00
- name: beautify
2022-07-17 20:41:49 +02:00
image: thegeeklab/alpine-tools
2021-12-21 10:29:16 +01:00
commands:
- html-beautify -r -f 'public/**/*.html'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- name: publish
image: thegeeklab/drone-s3-sync
2021-12-21 10:29:16 +01:00
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
source: public/
strip_prefix: public/
target: /${DRONE_REPO_NAME}
when:
ref:
- refs/heads/main
- refs/tags/**
2021-09-11 13:06:33 +02:00
trigger:
ref:
2021-12-21 10:29:16 +01:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2021-09-11 13:06:33 +02:00
---
kind: signature
2022-11-05 08:05:29 +01:00
hmac: f99a61d4ef60dce63207c62d91f131f54c6b3ec8a1e2a0beab6f478b748100a5
2021-09-11 13:06:33 +02:00
...