Skip to content

Commit c723169

Browse files
committed
unstage husky and node_modules
1 parent 39d9823 commit c723169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/plugin-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
- name: Create and push built branch
4343
run: |
4444
git checkout -b main-built
45+
git add -A # Stage all changes, including untracked files
4546
git reset -- .husky/ # Unstage the .husky directory
4647
git reset -- node_modules/ # Unstage the node_modules directory
47-
git add -A # Stage all changes, including untracked files
4848
git ls-files --ignored --exclude-standard -o -z | xargs -0 git rm --cached # Remove ignored files from the index
4949
git commit -m "Built WordPress plugin"
5050
git push origin main-built

0 commit comments

Comments
 (0)