mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 17:29:16 +02:00
Update to Ubuntu 22.04 for newer doxygen Update Actions to fix nodejs12 depreciation warning. Add Doxygen build and deploy status to README.md
41 lines
942 B
YAML
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
|