Files
kubevirt.core/.github/workflows/docs.yml
Felix Matouschek 4461c27fe2 fix(ci): remove deprecated ansible-basic-sphinx-ext from docs workflow
The docs workflow fails because ansible_basic_sphinx_ext uses
pkg_resources which was removed in recent setuptools versions.
The package is archived and deprecated - its functionality is
already covered by sphinx_antsibull_ext and ansible-pygments.

Also remove the Python version pin to use the runner default.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
2026-07-06 12:24:06 +02:00

67 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@v7
with:
path: ${{ env.collection_dir }}
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
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