mirror of
https://github.com/jsonnet-libs/fluxcd-libsonnet.git
synced 2026-05-05 14:46:13 +02:00
19 lines
584 B
YAML
19 lines
584 B
YAML
"jobs":
|
|
"build":
|
|
"name": "Deploy docs"
|
|
"runs-on": "ubuntu-latest"
|
|
"steps":
|
|
- "name": "Checkout main"
|
|
"uses": "actions/checkout@v3"
|
|
"with":
|
|
"fetch-depth": 0
|
|
- "uses": "actions/setup-python@v2"
|
|
- "run": "pip install -r requirements.txt"
|
|
- "run": "git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'"
|
|
- "name": "Publish docs"
|
|
"run": "mkdocs gh-deploy --force"
|
|
"name": "Publish docs via GitHub Pages"
|
|
"on":
|
|
"push":
|
|
"branches":
|
|
- "main" |