Skip to content

Commit bdb4f49

Browse files
committed
Fix missing characters in pipeline command
1 parent 5337418 commit bdb4f49

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
id: roles
8181
if: ${{ steps.filter.outputs.roles == 'true' }}
8282
run: |
83-
changed_roles=$(echo ${{ steps.filter.outputs.roles_files }} | jq -r '[.[] | split("/")[2]] | sort | unique | join(",")'
83+
changed_roles=$(echo '${{ steps.filter.outputs.roles_files }}' | jq -r '[.[] | split("/")[2]] | sort | unique | join(",")')
8484
echo "Changed roles: $changed_roles"
8585
echo "changed_roles=$changed_roles" >> $GITHUB_OUTPUT
8686
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

0 commit comments

Comments
 (0)