Skip to content
Merged
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
21 changes: 12 additions & 9 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,26 @@ on:

jobs:
build-docs:
runs-on: ubuntu-18.04
name: 🗎 Docs
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
recursive: "recursive"
submodules: recursive
- name: Installation
run: sudo apt-get -y install ps2eps texlive-latex-extra doxygen
run: |
sudo apt-get update
sudo apt-get -y install ps2eps texlive-latex-extra doxygen
- name: Build
run: |
pushd Documents/doxygen
doxygen Doxyfile
popd
mv ../../Doxygen/html ./build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.6.2
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: build # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: build
clean: true
Loading