From 042d1cc01fcce8884a023ceb8a388baa504a7b36 Mon Sep 17 00:00:00 2001 From: ez-plugins Date: Mon, 18 May 2026 22:30:22 +0200 Subject: [PATCH] fix: 404 docs --- .github/workflows/docs-pages.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs-pages.yml b/.github/workflows/docs-pages.yml index 60c75a1..2dfd1ec 100644 --- a/.github/workflows/docs-pages.yml +++ b/.github/workflows/docs-pages.yml @@ -31,10 +31,16 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v5 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: docs + destination: ./_site + - name: Upload docs artifact uses: actions/upload-pages-artifact@v3 with: - path: docs + path: ./_site - name: Deploy to GitHub Pages id: deployment