Bug 2229646: external: fqdn should be persisted #204
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs-check | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
- release-* | |
pull_request: | |
branches: | |
- master | |
- release-* | |
# cancel the in-progress workflow when PR is refreshed. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
docs-check: | |
name: docs-check | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Run helm-docs | |
run: | | |
make helm-docs | |
DIFF=$(git diff) | |
if [ ! -z "$DIFF" ]; then | |
echo "Please run 'make helm-docs' locally, commit the updated docs, and push the change. See https://rook.io/docs/rook/latest/Contributing/documentation/#running-helm-docs" | |
fi | |
git diff --exit-code | |
- name: Install mkdocs and dependencies | |
run: cd build/release/ && make deps.docs | |
- name: Build documentation using mkdocs | |
run: make docs-build |