From fff1a2b9095e46ab61b3a7736b5fb6fd9317f070 Mon Sep 17 00:00:00 2001 From: KCarretto Date: Sat, 1 Feb 2025 23:10:49 +0000 Subject: [PATCH] fix docs build and deployment --- .github/workflows/docs.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 389d85bd0..3a298b755 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -27,11 +27,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Build with Jekyll uses: actions/jekyll-build-pages@v1 with: @@ -39,6 +39,8 @@ jobs: destination: ./_site - name: Upload artifact uses: actions/upload-pages-artifact@v3 + with: + path: "./_site" # Deployment job deploy: @@ -50,4 +52,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v4