From 22974a80bac99252e27d2ebfd220a836ff4206c3 Mon Sep 17 00:00:00 2001 From: katbow Date: Tue, 24 Sep 2024 16:13:43 +0100 Subject: [PATCH] Add a configuration step as described in https://github.com/actions/deploy-pages/issues/305#issuecomment-1949615705 --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e66306f..e5a4425 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,6 +38,8 @@ jobs: # Specify runner + deployment step runs-on: ubuntu-latest steps: + - name: Configure Pages + uses: actions/configure-pages@v4 - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action