Skip to content

Commit 333413a

Browse files
author
Alex J Lennon
committed
🔧 Fix GitHub Actions workflow parameters
Fixed CI warning by correcting parameter names for JamesIves/github-pages-deploy-action@v4: - GITHUB_TOKEN → token - BRANCH → branch - FOLDER → folder This resolves the 'Unexpected input(s)' warning and ensures proper deployment.
1 parent 6a55e16 commit 333413a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎.github/workflows/deploy.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
- name: Commit wwwroot to GitHub Pages
3434
uses: JamesIves/github-pages-deploy-action@v4
3535
with:
36-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37-
BRANCH: gh-pages
38-
FOLDER: release/wwwroot
36+
token: ${{ secrets.GITHUB_TOKEN }}
37+
branch: gh-pages
38+
folder: release/wwwroot

0 commit comments

Comments
 (0)