overte-JulianGro/.github/workflows/master_deploy_doxygen.yml
Julian Groß e30a19b008 Update Doxygen GitHub Actions builds
Update to Ubuntu 22.04 for newer doxygen
Update Actions to fix nodejs12 depreciation warning.

Add Doxygen build and deploy status to README.md
2023-02-04 19:19:25 +01:00

41 lines
942 B
YAML

# Copyright 2022-2023 Overte e.V.
# SPDX-License-Identifier: MIT
name: Master Doxygen CI Build and Deploy
on:
push:
branches:
- master
jobs:
build_doxygen:
runs-on: ubuntu-22.04
name: Build and deploy Doxygen documentation
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
sudo apt install doxygen
- name: Build Doxygen
working-directory: tools/doxygen
shell: bash
run: |
mkdir -p ../../build/docs/html
doxygen Doxyfile
- name: Deploy Doxygen
uses: SamKirkland/FTP-Deploy-Action@4.3.3
with:
server: ftp.tuxfamily.org
username: ${{ secrets.GHA_JSDOC_FTP_USER }}
password: ${{ secrets.GHA_JSDOC_FTP_PASS }}
local-dir: ./build/docs/html/
server-dir: overte/doxygen.overte.org-web/htdocs/
exclude: |
**/staging/**
.htaccess