diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4c163a8..03b6ec1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,14 @@ jobs: npm install npm run build - - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 with: - folder: dist \ No newline at end of file + # Upload entire repository + path: 'dist' + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2