Skip to content

Remove Qt depency

Remove Qt depency #51

Workflow file for this run

name: Build Docs
on:
push:
branches: [ "master", "dev"]
pull_request:
branches: [ "master", "dev"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout HydroCouple Repo
uses: actions/checkout@v4
with:
path: HydroCouple
- name: Checkout HydroCouple Docs Repo
uses: actions/checkout@v4
with:
repository: HydroCouple/hydrocouple.github.io
ref: dev
path: hydrocouple.github.io
persist-credentials: true
- name: Install Graphviz and Doxygen
run: |
sudo apt-get update
sudo apt-get install -y graphviz doxygen
- name: Build Docs
run : |
cd HydroCouple/docs
doxygen Doxyfile
tar -czvf hydrocouple_docs.tar.gz html
# - name: Push Docs to HydroCouple Website Repo
# env:
# REPO_KEY: ${{ secrets.GITHUB_TOKEN }}
# run: |
# cp -RT HydroCouple/docs/html hydrocouple.github.io/hydrocoupledocs/html
# cd hydrocouple.github.io
# git add -A
# git commit -m "CI: Updated HydroCouple Docs"
# git push
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: hydrocouple-docs
path: HydroCouple/docs/*.tar.gz