1
0
Fork 0
golang-github-nicholas-fedo.../.github/workflows/docs.yaml
Daniel Baumann 6819b9812e
Adding upstream version 0.8.13.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-29 07:17:59 +02:00

59 lines
1.5 KiB
YAML

name: Publish Docs
on:
workflow_dispatch: {}
permissions:
contents: write
actions: read
env:
GO_VERSION: 1.24.x
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
with:
go-version: ${{ env.GO_VERSION }}
- name: Generate Service Config Docs
run: |
go mod download
go clean -cache # Clear build cache
./generate-service-config-docs.sh
- name: Setup Python
uses: actions/setup-python@5db1cf9a59fb97c40a68accab29236f0da7e94db
with:
python-version: "3.13.3"
cache: "pip"
cache-dependency-path: |
docs-requirements.txt
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install mkdocs
run: |
pip install -r docs-requirements.txt
- name: Build and Deploy
run: mkdocs gh-deploy --force --verbose