Skip to content

Commit

Permalink
workflow: Updates docs deployment
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Collins <[email protected]>
  • Loading branch information
benmcollins committed Jan 6, 2025
1 parent d67c99c commit 8e0ea1f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploys-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- uses: ConorMacBride/install-package@v1
with:
brew: gnutls openssl@3 jansson pkgconf cmake doxygen graphviz

- name: Build Head docs
run: |
set -e
cmake -B build
make -C build doxygen-doc
mkdir -p gh-pages
Expand All @@ -34,11 +36,11 @@ jobs:
- name: Build Latest tag docs
run: |
set -e
git checkout $(git describe --tags --abbrev=0)
cmake -B build
make -C build doxygen-doc
mv build/doxygen-doc/html/* gh-pages/
find gh-pages/ -type f -ls
- name: Upload pages
id: deployment
Expand Down

0 comments on commit 8e0ea1f

Please sign in to comment.