Skip to content

Commit

Permalink
Fix with find
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuroXina committed Sep 26, 2023
1 parent b2901f4 commit 0f90f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/list_dockerfile/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ runs:
- uses: actions/checkout@v4
- id: set_matrix
shell: bash
run: echo "matrix=$(ls services/**/Dockerfile | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
run: echo "matrix=$(find . -name Dockerfile -maxdepth 3 -print0 | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT

0 comments on commit 0f90f08

Please sign in to comment.