diff --git a/.github/actions/list_dockerfile/action.yml b/.github/actions/list_dockerfile/action.yml index bad4b253..15c7fd30 100644 --- a/.github/actions/list_dockerfile/action.yml +++ b/.github/actions/list_dockerfile/action.yml @@ -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