Skip to content

Commit

Permalink
no single quotes for anything
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsmida committed May 23, 2024
1 parent ac169b1 commit 3ca3831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/trigger-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
changed_filenames=$(git -C $GITHUB_WORKSPACE diff --name-only HEAD~1)
# Format changed_filenames with single quotes and commas
formatted_changed_filenames="[ $(echo $changed_filenames | sed "s/\S\+/'&',/g; s/,$//") ]"
formatted_changed_filenames="[ $(echo $changed_filenames | sed "s/\S\+/\"&\",/g; s/,$//") ]"
base64_encoded_files=()
while IFS= read -r filename; do
Expand Down

0 comments on commit 3ca3831

Please sign in to comment.