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 2fd4ddc + c723169 commit 3cac484Copy full SHA for 3cac484
.github/workflows/plugin-build.yml
@@ -42,9 +42,9 @@ jobs:
42
- name: Create and push built branch
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 add -A # Stage all changes, including untracked files
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