File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 9696 ./_tools/pack debug
9797 ls -AlR _site/assets/js
9898
99+ # Generate and add Doxygen source documentation
100+ sudo apt-get install doxygen graphviz -y
101+
102+ OSE_SRC_REPO=https://github.com/HofiOne/syslog-ng.git # https://github.com/syslog-ng/syslog-ng.git
103+ OSE_SRC_REPO_BRANCH=add-doxygen-file # develop - as this is a debeloper documentation us the latest develop branch instead of the master
104+ git clone --branch ${OSE_SRC_REPO_BRANCH} --single-branch ${OSE_SRC_REPO} ./_work
105+
106+ pushd ./_work
107+ ( cat ./Doxyfile; echo "OUTPUT_DIRECTORY=../_site/dev-guide/chapter_9/" ) | doxygen -
108+ popd
109+ rm -Rf ./_work
110+
99111 - name : Upload artifact
100112 # Automatically uploads an artifact from the './_site' directory by default
101113 uses : actions/upload-pages-artifact@v3
You can’t perform that action at this time.
0 commit comments