From cc8b2c46b98911d535786809c185d16a2d0a1807 Mon Sep 17 00:00:00 2001 From: Aniruddha Deb Date: Wed, 10 Jan 2024 16:14:41 +0530 Subject: [PATCH] Path cleanup --- .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 f3e2643..8e12d66 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: production-files - path: dist + path: ./web/dist deploy: name: Deploy @@ -46,10 +46,10 @@ jobs: uses: actions/download-artifact@v3 with: name: production-files - path: dist + path: ./web/dist - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: dist + publish_dir: ./web/dist