Skip to content

Commit 918ad8e

Browse files
chore: fix quoting of ci workflow input (#353)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent 31484aa commit 918ad8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
id: set-matrix
5353
run: |
5454
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
55-
echo "version=[${{ github.event.inputs.versions }}]" >> $GITHUB_OUTPUT
55+
echo 'version=[${{ github.event.inputs.versions }}]' >> $GITHUB_OUTPUT
5656
echo "group=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]" >> $GITHUB_OUTPUT
5757
echo "total=12" >> $GITHUB_OUTPUT
5858
elif [ "${{ github.event_name }}" == "pull_request" ]; then

0 commit comments

Comments
 (0)