From 3992096df3ebfc084bef742d3495831084a4a625 Mon Sep 17 00:00:00 2001 From: Tobi-D7 Date: Tue, 12 Apr 2022 11:05:53 +0200 Subject: [PATCH] Fix --- .github/workflows/Docs.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Docs.yml b/.github/workflows/Docs.yml index 1ee2949..ee8bbf2 100644 --- a/.github/workflows/Docs.yml +++ b/.github/workflows/Docs.yml @@ -26,22 +26,26 @@ jobs: # Runs a single command using the runners shell - name: Run a one-line script run: | + git config --global user.email "tobid7@outlook.de" + git config --global user.name "Tobi-D7" sudo apt-get install doxygen cmake -y doxygen echo done ls -r cd .. git clone --depth 1 https://${{ secrets.TOKEN }}@github.com/NPI-D7/RenderD7.git RD7 -b gh-pages - mkdir -p RD7 - rm -r RD7/* + cd RD7 + git rm * + rm -r * + cd .. + mv -v RenderD7/doc/html/* RD7/ #rm -r doc cd RD7 - git config --global user.email "tobid7@outlook.de" - git config --global user.name "Tobi-D7" + echo tobid7 git stage * - git add/rm * + echo staged git commit -a "Documentation1" git tag doc