From 315872bdea7bf59ad9e593ad5bfe0f5a9766e1b9 Mon Sep 17 00:00:00 2001 From: Jenifer Tabita Ciuciu-Kiss Date: Fri, 14 Jun 2024 00:54:03 +0200 Subject: [PATCH] action fix --- .github/workflows/static.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index c96a2ad..3233d48 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -31,15 +31,18 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Pages uses: actions/configure-pages@v5 + - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: # Upload entire repository path: '.' - - shell: bash - - run: | + + - name: Generate documentation + run: | git config --global --add safe.directory '*' git config --local user.name 'github-actions[bot]' git config --local user.email 'github-actions[bot]@users.noreply.github.com' @@ -51,6 +54,7 @@ jobs: git pull --rebase && git push && break || sleep 1 done fi + - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4