From fdeabf74ae1b334d24b61ba9c12740b5e037c08c Mon Sep 17 00:00:00 2001 From: sumn2u Date: Tue, 26 Mar 2024 09:49:37 -0500 Subject: [PATCH] use same artifact name --- .github/workflows/static.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index ee5054b..53a7f7b 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -37,7 +37,7 @@ jobs: - name: Upload Documentation Artifact uses: actions/upload-artifact@v3 with: - name: docs + name: docs # Artifact name matches deployment path: ./docs # Single deploy job since we're just deploying @@ -55,8 +55,11 @@ jobs: - name: Download Documentation Artifact uses: actions/download-artifact@v3 with: - name: docs + name: docs # Artifact name matches uploaded artifact path: ./docs - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 + with: + artifact_name: docs # Artifact name matches uploaded artifact + # Other deployment options like token, timeout, etc. (if needed)