Skip to content

Commit a7b2d91

Browse files
use paste to join lines with a comma
1 parent cf9e0b2 commit a7b2d91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy-changed-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
TEST_SLACK_CHANNEL_ID: ${{ secrets.TEST_SLACK_CHANNEL_ID }}
8787
TEST_SLACK_TOKEN: ${{ secrets.TEST_SLACK_TOKEN }}
8888
run: |
89-
SAMPLES=$(IFS=,; echo "$(cat changed_samples.txt)")
89+
SAMPLES=$(paste -sd ',' changed_samples.txt)
9090
echo "Running tests for samples: $SAMPLES"
9191
9292
mkdir output

0 commit comments

Comments
 (0)