--- when: - event: [pull_request, tag] - event: [push, manual] branch: - ${CI_REPO_DEFAULT_BRANCH} steps: - name: markdownlint image: quay.io/thegeeklab/markdownlint-cli group: test commands: - markdownlint 'docs/**/*.md' 'README.md' - name: spellcheck image: quay.io/thegeeklab/alpine-tools group: test commands: - spellchecker --files 'docs/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls frontmatter --frontmatter-keys title tags environment: FORCE_COLOR: "true" - name: link-validation image: docker.io/lycheeverse/lychee group: test commands: - lychee --no-progress --format detailed docs/ README.md - name: 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