mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-03-27 03:13:10 +00:00
68 lines
1.9 KiB
YAML
68 lines
1.9 KiB
YAML
---
|
|
name: Documentation
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- "[0-9]+.[0-9]+.[0-9]+"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
# Do not run in private forks
|
|
if: github.repository == 'kubevirt/kubevirt.core'
|
|
permissions:
|
|
contents: write
|
|
env:
|
|
collection_dir: ansible_collections/kubevirt/core
|
|
work_dir: /home/runner/.ansible/collections
|
|
steps:
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v5
|
|
with:
|
|
path: ${{ env.collection_dir }}
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.x
|
|
cache: pip
|
|
|
|
- name: Install doc dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip setuptools
|
|
pip install \
|
|
-r ${{ env.collection_dir }}/docs/requirements.txt
|
|
pip install \
|
|
-r ${{ env.collection_dir }}/requirements.txt
|
|
mkdir -p ${{ env.work_dir }}
|
|
ansible-galaxy collection install \
|
|
-r ${{ env.collection_dir }}/requirements.yml \
|
|
-p ${{ env.work_dir }} --force-with-deps
|
|
sudo apt install -y sed hub
|
|
|
|
- name: Move collection to work dir
|
|
run: |
|
|
cp -rp ansible_collections \
|
|
${{ env.work_dir }}
|
|
|
|
- name: Create changelog and documentation
|
|
uses: ansible-middleware/collection-docs-action@main
|
|
with:
|
|
collection_fqcn: kubevirt.core
|
|
collection_repo: kubevirt/kubevirt.core
|
|
dependencies: false
|
|
commit_changelog: false
|
|
commit_ghpages: true
|
|
changelog_release: false
|
|
generate_docs: true
|
|
path: ${{ env.work_dir }}/${{ env.collection_dir }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
bot_email: kubevirtbot@redhat.com
|
|
bot_account: kubevirt-bot
|