test docs deployment #2
Workflow file for this run
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: Documentation | |
on: | |
pull_request: | |
paths: | |
- 'docs/**' | |
- '.github/workflows/docs.yml' | |
push: | |
branches: | |
- main | |
- 7-setup-workflow-for-deployments | |
paths: | |
- 'docs/**' | |
- '.github/workflows/docs.yml' | |
release: | |
types: | |
- created | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
docs: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: FelixTJDietrich/sphinx-action@java | |
with: | |
docs-folder: "docs/" | |
build-command: make html dirhtml | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Documentation | |
path: docs/_build/html/ | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: docs/_build/dirhtml/ | |
deploy: | |
# TODO: Change branch name whenever this workflow is tested | |
if: github.ref == 'refs/heads/7-setup-workflow-for-deployments' | |
environment: | |
name: github-pages | |
url: "https://ls1intum.github.io/Helios/" | |
runs-on: ubuntu-22.04 | |
needs: docs | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |