Merge pull request #64 from orgua/dependabot/pip/ansible-10.4.0 #75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Docs | |
# for Github-Pages | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_call: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-quality-control: | |
uses: ./.github/workflows/qc_tests.yml | |
build-pages: | |
runs-on: ubuntu-latest | |
needs: | |
- run-quality-control | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
submodules: true # for grabbing readme-files | |
- name: Build and Push Pages 🧱 | |
uses: sphinx-notes/pages@v3 | |
with: | |
checkout: false | |
pyproject_extras: "" | |
# currently needed because action begins to analyze root pyproject.toml |