From 8899d43398321cd2827fb9e882f0fba3fbdf1767 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 13 Dec 2024 21:43:07 +0530 Subject: [PATCH] deploy steps modified --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 203d4a7..ed23949 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -46,7 +46,7 @@ jobs: git worktree remove gh-pages --force || true - name: Upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-pages-artifact@v3 with: name: github-pages path: build # The folder containing your build output @@ -54,5 +54,5 @@ jobs: # Step 5: Deploy to GitHub Pages - name: Deploy to GitHub Pages uses: actions/deploy-pages@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub