We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7e39d9 commit 6cc89e2Copy full SHA for 6cc89e2
.github/workflows/deploy.yml
@@ -16,10 +16,10 @@ jobs:
16
with:
17
ref: main # Ensure you're deploying from the correct branch (main)
18
19
- # Deploy to GitHub Pages
+ # Set up the GitHub Pages deploy action
20
- name: Deploy to GitHub Pages
21
uses: JamesIves/github-pages-deploy-action@v4 # Using the latest stable version
22
23
branch: gh-pages # The branch where the content will be deployed (default is gh-pages)
24
folder: src # The folder to deploy (in your case, it's 'src')
25
- token: ${{ secrets.GITHUB_TOKEN }} # Automatically used token for authentication
+ token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # Use the PAT stored in GitHub secrets
0 commit comments