Skip to content

Commit 6dbdf92

Browse files
author
Pavel Chupin
authored
[CI] Fix doxygen documentation generation (#6129)
With the old setup https://github.com/intel/llvm-docs repo size exceeded 30Gb, that caused docs gen job fail in github actions due to size exceeded. This patch reworks the setup by always ammending changes on updates, keeping docs repo size under control. If we ever need doxygen docs history we can start producing tags for interested dates.
1 parent 27305a0 commit 6dbdf92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/gh_pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ jobs:
5454
git config --global user.name "iclsrc"
5555
git config --global user.email "ia.compiler.tools.git@intel.com"
5656
git add .
57-
git diff-index --quiet HEAD || git commit -m "Update docs" -s
58-
git push
57+
git diff-index --quiet HEAD || git commit --amend -m "Update docs" -s
58+
git push -f

0 commit comments

Comments
 (0)