Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: James Talton <[email protected]>
  • Loading branch information
jamestalton committed Aug 29, 2024
1 parent d7698d0 commit 3b395d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: set-matrix
run: |
BASE_DIR="${{ inputs.directory }}"
matrix=$(find "$BASE_DIR" -type f -name '*.cy.tsx' | sort -u | sed "s|^$BASE_DIR/||" | jq -R . | jq -s -c .)
matrix=$(find "$BASE_DIR" -type f -name '*.cy.tsx' | sed "s|^$BASE_DIR/||" | awk -F'/' '{print $1"/"$2}' | sort -u | jq -R . | jq -s -c .)
echo "Matrix value: $matrix"
echo "MATRIX=$matrix" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 3b395d3

Please sign in to comment.