CI: Update used actions #455
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 OpenMP | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, reopened, synchronize] | |
permissions: | |
contents: write | |
jobs: | |
Doxygen: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install OpenMP | |
shell: bash | |
run: | | |
bash tools/ubuntu/install_openmp.sh | |
- name: Install docs dependencies | |
shell: bash | |
run: | | |
bash tools/ubuntu/install_docs_dependencies.sh | |
- name: Download dependencies | |
shell: bash | |
run: | | |
bash tools/dev/download_dependencies.sh | |
- name: Configure project | |
shell: bash | |
run: | | |
bash tools/backend/configure_openmp_documentation.sh | |
- name: Build documentation | |
shell: bash | |
run: | | |
bash tools/dev/build_documentation.sh | |
- name: Deploy documentation | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: build/docs/html | |
clean: true | |
single-commit: true | |
if: github.event_name != 'pull_request' |