diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 59983ce..da034ff 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: production-files - path: ./dist + path: ../dist deploy: name: Deploy @@ -42,10 +42,10 @@ jobs: uses: actions/download-artifact@v2 with: name: production-files - path: ./dist + path: ../dist - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist \ No newline at end of file + publish_dir: ../dist \ No newline at end of file