Skip to content

Commit d786553

Browse files
paste assumes strings are filenames unless fed thru stdin
1 parent a7b2d91 commit d786553

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=$(paste -sd ',' changed_samples.txt)
89+
SAMPLES=$(sed 's|^samples/||' changed_samples.txt | paste -s -d ',' -)
9090
echo "Running tests for samples: $SAMPLES"
9191
9292
mkdir output

0 commit comments

Comments
 (0)