diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b3bb49c..fbd3b96 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,7 +27,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: production-files - path: ./dist + path: ./public deploy: name: Deploy @@ -40,10 +40,10 @@ jobs: uses: actions/download-artifact@v3 with: name: production-files - path: ./dist + path: ./public - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist + publish_dir: ./public