Skip to content

Commit 58cb579

Browse files
committed
Fix
1 parent 05932ef commit 58cb579

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/issue-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
- name: "Extract shard"
131131
working-directory: "issue-bot"
132132
id: chunk
133-
run:
133+
run: |
134134
echo "phpVersion=$(jq -r '.[${{ matrix.shard }}].phpVersion' matrix.json)" >> $GITHUB_OUTPUT
135135
echo "playgroundExamples=$(jq -r '.[${{ matrix.shard }}].playgroundExamples' matrix.json)" >> $GITHUB_OUTPUT
136136
echo "chunkNumber=$(jq -r '.[${{ matrix.shard }}].chunkNumber' matrix.json)" >> $GITHUB_OUTPUT

issue-bot/src/Console/DownloadCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
141141
}
142142
}
143143

144-
$output->writeln(Json::encode([$matrix]));
144+
$output->writeln(Json::encode($matrix));
145145

146146
return 0;
147147
}

0 commit comments

Comments
 (0)