Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/plugin-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
run: |
git checkout -b main-built
git add -A # Stage all changes, including untracked files
git reset -- .husky/ # Unstage the .husky directory
git reset -- node_modules/ # Unstage the node_modules directory
git rm --cached -r .husky || true
git rm --cached -r node_modules || true
git ls-files --ignored --exclude-standard -o -z | xargs -0 git rm --cached # Remove ignored files from the index
git commit -m "Built WordPress plugin"
git push origin main-built