51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
markdownlint:
|
|
image: quay.io/thegeeklab/markdownlint-cli
|
|
group: test
|
|
commands:
|
|
- markdownlint 'README.md' 'CONTRIBUTING.md'
|
|
|
|
spellcheck:
|
|
image: quay.io/thegeeklab/alpine-tools
|
|
group: test
|
|
commands:
|
|
- spellchecker --files 'docs/**/*.md' 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls
|
|
environment:
|
|
FORCE_COLOR: "true"
|
|
NPM_CONFIG_LOGLEVEL: "error"
|
|
|
|
link-validation:
|
|
image: docker.io/lycheeverse/lychee
|
|
group: test
|
|
commands:
|
|
- lychee --no-progress --format detailed docs/ README.md
|
|
|
|
publish:
|
|
image: quay.io/thegeeklab/wp-git-action
|
|
settings:
|
|
action:
|
|
- pages
|
|
author_email: shipper@rknet.org
|
|
author_name: shipper
|
|
branch: docs
|
|
message: auto-update documentation
|
|
netrc_machine: gitea.rknet.org
|
|
netrc_password:
|
|
from_secret: gitea_token
|
|
pages_directory: docs/
|
|
remote_url: https://gitea.rknet.org/ansible/${CI_REPO_NAME}
|
|
when:
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
depends_on:
|
|
- build-package
|