Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.circleci export-ignore
node_modules export-ignore
2 changes: 2 additions & 0 deletions .github/workflows/plugin-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
- name: Create and push built branch
run: |
git checkout -b main-built
git reset -- .husky/ # Unstage the .husky directory
git reset -- node_modules/ # Unstage the node_modules directory
git add -A # Stage all changes, including untracked files
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"
Expand Down