diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5a9ef49..7354e48 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,12 @@ jobs: run: npm run build - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 + uses: JamesIves/github-pages-deploy-action@v4 with: - personal_token: ${{ secrets.ACCESS_TOKEN }} # Use the PAT here - publish_dir: ./dist + branch: gh-pages # The branch to deploy to + folder: dist # The folder to deploy + token: ${{ secrets.ACCESS_TOKEN }} # Use your personal access token here + #uses: peaceiris/actions-gh-pages@v3 + #with: + #personal_token: ${{ secrets.ACCESS_TOKEN }} # Use the PAT here + #publish_dir: ./dist