Skip to content

Commit

Permalink
fix(ci): escape \ in find
Browse files Browse the repository at this point in the history
  • Loading branch information
viv-4 authored Nov 7, 2024
1 parent b7bf23f commit 3fd8946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: kanga333/json-array-builder@main
id: array
with:
cmd: 'find charts/placeos/charts -mindepth 1 -type d \( -name tests -o -name templates \) -prune -o -type d -print'
cmd: 'find charts/placeos/charts -mindepth 1 -type d \\( -name tests -o -name templates \\) -prune -o -type d -print'
outputs:
directories: ${{ steps.array.outputs.build }}

Expand Down

0 comments on commit 3fd8946

Please sign in to comment.