galaxy/.drone.yml

89 lines
2.0 KiB
YAML
Raw Normal View History

2020-01-21 01:46:04 +01:00
---
kind: pipeline
2021-05-15 16:31:56 +02:00
name: default
2020-01-21 01:46:04 +01:00
2020-05-25 19:40:39 +02:00
platform:
os: linux
arch: amd64
2020-01-21 01:46:04 +01:00
steps:
2021-12-21 10:41:07 +01:00
- name: generate
image: thegeeklab/alpine-tools
commands:
- make doc
2020-01-21 01:46:04 +01:00
2021-12-21 10:41:07 +01:00
- name: sync
image: thegeeklab/git-batch
commands:
- git-batch
2020-01-21 01:46:04 +01:00
2021-12-21 10:41:07 +01:00
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'content/**/*.md' 'README.md' -p .gitignore
2020-06-03 23:08:15 +02:00
2021-12-21 10:41:07 +01:00
- name: spellcheck
2022-07-16 22:57:06 +02:00
image: thegeeklab/alpine-tools
2021-12-21 10:41:07 +01:00
commands:
- spellchecker --no-gitignore --files 'content/**/_index.md' 'README.md' '!content/filters/*' '!content/modules/*' -d .dictionary -p spell indefinite-article syntax-urls frontmatter --frontmatter-keys title --no-suggestions
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
2020-06-03 23:08:15 +02:00
2021-12-21 10:41:07 +01:00
- name: testbuild
2022-11-05 07:57:52 +01:00
image: thegeeklab/hugo:0.105.0
2021-12-21 10:41:07 +01:00
commands:
2022-05-20 15:12:50 +02:00
- hugo --panicOnWarning -b http://localhost:8000/
2020-06-03 23:08:15 +02:00
2021-12-21 10:41:07 +01:00
- name: link-validation
image: thegeeklab/link-validator
commands:
2022-11-04 10:18:46 +01:00
- link-validator --color=always --rate-limit 10
2021-12-21 10:41:07 +01:00
environment:
LINK_VALIDATOR_BASE_DIR: public
2022-11-04 08:45:28 +01:00
LINK_VALIDATOR_RETRIES: 3
2020-06-03 23:08:15 +02:00
2021-12-21 10:41:07 +01:00
- name: build
2022-11-05 07:57:52 +01:00
image: thegeeklab/hugo:0.105.0
2021-12-21 10:41:07 +01:00
commands:
2022-03-05 17:18:37 +01:00
- hugo --panicOnWarning
2020-06-03 23:08:15 +02:00
2021-12-21 10:41:07 +01:00
- name: beautify
2022-07-16 22:57:06 +02:00
image: thegeeklab/alpine-tools
2021-12-21 10:41:07 +01:00
commands:
- html-beautify -r -f 'public/**/*.html'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
2020-01-21 01:46:04 +01:00
2021-12-21 10:41:07 +01:00
- name: publish
image: thegeeklab/drone-s3-sync
2021-12-21 10:41:07 +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
2021-12-21 10:41:07 +01:00
- refs/tags/**
2020-01-21 01:46:04 +01:00
trigger:
ref:
- refs/heads/main
2021-12-21 10:41:07 +01:00
- refs/tags/**
- refs/pull/**
2020-05-25 19:40:39 +02:00
2020-01-21 01:46:04 +01:00
---
kind: signature
2022-11-05 07:57:52 +01:00
hmac: c20119ad59c3ad54f583cf96eb0de426355a9e4996e8214687356789be23709e
2020-01-21 01:46:04 +01:00
...