From 9a803b234da06c601d2e7ad9302200b054c211f3 Mon Sep 17 00:00:00 2001 From: hello Date: Fri, 28 Feb 2025 01:59:28 +0530 Subject: [PATCH] added deployments --- .github/workflows/deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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"