Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on:
push:
branches: [ main ]
paths: [ "docs/**", "mkdocs.yml", ".github/workflows/docs.yml" ]
pull_request:
paths: [ "docs/**", "mkdocs.yml", ".github/workflows/docs.yml" ]

permissions:
contents: write
Expand All @@ -18,5 +20,7 @@ jobs:
with:
python-version: "3.12"
cache: pip
- run: pip install mkdocs-material # add your other plugins
- run: mkdocs gh-deploy --force
- run: pip install ".[docs]"
- run: mkdocs build --strict
- if: github.event_name == 'push'
run: mkdocs gh-deploy --force
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ The tool migrates resources in the correct dependency order:

## Documentation

Published docs: [https://redhat-cop.github.io/aap-bridge/](https://redhat-cop.github.io/aap-bridge/)

Full documentation is available via MkDocs with the Material theme.

### Viewing Documentation Locally
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
site_name: AAP Bridge
site_description: Production-grade migration tool for Ansible Automation Platform
site_author: Antony Sallas
site_url: https://redhat-cop.github.io/aap-bridge/
repo_url: https://github.com/redhat-cop/aap-bridge
repo_name: redhat-cop/aap-bridge

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ aap-bridge = "aap_migration.cli.main:main"

[project.urls]
Homepage = "https://github.com/redhat-cop/aap-bridge"
Documentation = "https://github.com/redhat-cop/aap-bridge/tree/main/docs"
Documentation = "https://redhat-cop.github.io/aap-bridge/"
Repository = "https://github.com/redhat-cop/aap-bridge"
"Bug Tracker" = "https://github.com/redhat-cop/aap-bridge/issues"

Expand Down