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.
2 parents 3cac484 + ac298e5 commit 2a1108fCopy full SHA for 2a1108f
.github/workflows/plugin-build.yml
@@ -43,8 +43,8 @@ jobs:
43
run: |
44
git checkout -b main-built
45
git add -A # Stage all changes, including untracked files
46
- git reset -- .husky/ # Unstage the .husky directory
47
- git reset -- node_modules/ # Unstage the node_modules directory
+ git rm --cached -r .husky || true
+ git rm --cached -r node_modules || true
48
git ls-files --ignored --exclude-standard -o -z | xargs -0 git rm --cached # Remove ignored files from the index
49
git commit -m "Built WordPress plugin"
50
git push origin main-built
0 commit comments