From cadc007f62edb92f2ffe61c018167d22b6723ba4 Mon Sep 17 00:00:00 2001 From: Ryan Lovett Date: Mon, 7 Oct 2024 13:31:39 -0700 Subject: [PATCH] Explicitly name the artifact. There might be some discrepancy between github-pages and github-pages.zip. --- .github/workflows/deploy.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b2ee1e4..9a9c1ee 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -42,17 +42,16 @@ jobs: - name: Build HTML Assets run: myst build --html - # Verify the _build/html directory exists - - name: Verify build output - run: ls -la _build/html - - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: path: './_build/html' + artifact_name: 'github-pages' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2 + with: + artifact_name: 'github-pages' env: ACTIONS_STEP_DEBUG: true