Skip to content

Commit

Permalink
Merge pull request #290 from boxuk/fix/wp-packages-update
Browse files Browse the repository at this point in the history
[FIX] Allow Packages without deployingore files to be deployed
  • Loading branch information
jdamner authored Jan 3, 2025
2 parents fd5a2ba + 8d51937 commit 3985ae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
run: npm run build
- name: Rename all `.deployignore` files to `.gitignore` in package
working-directory: packages/${{ matrix.packages.local_path }}
run: mv .deployignore .gitignore
run: |
[ ! -f .deployignore ] || mv .deployignore .gitignore
- name: Split Monorepo
if: "!startsWith(github.ref, 'refs/tags/')"
Expand Down
Empty file.

0 comments on commit 3985ae9

Please sign in to comment.