Browse Source

fix: swtch to single quotes

pull/8421/head
Rohit 2 months ago
parent
commit
580b3d273d
  1. 2
      .github/workflows/bats-test.yml

2
.github/workflows/bats-test.yml

@ -19,7 +19,7 @@ jobs:
id: set-matrix
run: |
BATS_FILES=$(find docker-compose/setup-script/tests -name '*.bats')
MATRIX_JSON=$(echo $BATS_FILES | tr -d '\n' | jq -Rsc 'split(" ")')
MATRIX_JSON=$(echo $BATS_FILES | tr -d '\n' | jq -Rsc 'split(" ")' | tr '"' "'")
echo "matrix=$MATRIX_JSON" >> $GITHUB_ENV
test:

Loading…
Cancel
Save