diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 4484fa5..28bfb54 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -10,8 +10,11 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - name: Configure Git Credentials + run: | + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com - uses: actions/setup-python@v4 with: python-version: 3.x @@ -22,15 +25,6 @@ jobs: path: .cache restore-keys: | mkdocs-material- - - run: pip install mkdocs-material==9.4.1 mkdocs-glightbox + - run: pip install mkdocs-material - run: mkdocs gh-deploy --force - - name: Setup Pages - uses: actions/configure-pages@v3 - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - # Upload entire repository - path: '.' - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v1 \ No newline at end of file + \ No newline at end of file