diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c360d75..caa8f97 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,6 +51,9 @@ jobs: - name: Build run: pnpm run build + - name: Debug directory contents + run: ls -la ./dist + - name: Setup Pages uses: actions/configure-pages@v4 @@ -58,6 +61,7 @@ jobs: uses: actions/upload-pages-artifact@v3 with: path: "./dist" + name: "github-pages" deploy: environment: @@ -69,3 +73,5 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v3 + with: + artifact_name: "github-pages"