doxygen #988
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: doxygen | |
on: | |
push: | |
branches: master | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
doxygen: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build Docker Image for Doxygen | |
run: | | |
docker build -f Dockerfile -t itk-doxygen . | |
- name: Docker Doxygen generation | |
run: | | |
docker run --name itk-dox itk-doxygen | |
mkdir -p artifacts | |
docker cp itk-dox:/ITKDoxygen.tar.gz artifacts/ITKDoxygen-${GITHUB_SHA}.tar.gz | |
docker cp itk-dox:/ITKDoxygenXML.tar.gz artifacts/ITKDoxygenXML-${GITHUB_SHA}.tar.gz | |
- name: Archive Doxygen Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: doxygen | |
path: | | |
artifacts/ITKDoxygenXML-*.tar.gz | |
artifacts/ITKDoxygen-*.tar.gz | |
- name: Update gh-pages | |
if: github.ref == 'refs/heads/master' | |
run: | | |
tar -zxf artifacts/ITKDoxygen-*.tar.gz | |
touch html/.nojekyll | |
git update-ref refs/heads/${TARGET_BRANCH} origin/${TARGET_BRANCH} | |
./update-gh-pages.sh html | |
repo_uri="https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" | |
git push $repo_uri ${TARGET_BRANCH} | |
env: | |
GITHUB_TOKEN: ${{ secrets.github_token }} | |
TARGET_BRANCH: 'gh-pages' | |