File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -181,17 +181,19 @@ jobs:
181
181
# Parse the matrix configuration directly
182
182
let matrix_config = ${{ fromJson(needs.prepare.outputs.matrix_config) }}
183
183
184
- # Extract the versions as a list
185
184
let versions = $matrix_config.include | get version
186
185
187
186
echo "Versions: $versions"
188
- let versions_str = ($versions | join ",")
187
+
188
+ # Convert the table of versions to a simple list of strings
189
+ let versions_str = ($versions | get version | join ",")
189
190
$"versions=$versions_str" | save --append $env.GITHUB_ENV
190
191
'
191
192
192
193
- name : Download Results Artifacts
193
194
run : |
194
195
nix run nixpkgs#nushell -- -c '
196
+ # Ensure the versions environment variable is correctly set
195
197
let versions = env.versions | str split ","
196
198
foreach $version in $versions {
197
199
let artifact_name = "merge_results-$version"
@@ -202,6 +204,7 @@ jobs:
202
204
}
203
205
'
204
206
207
+
205
208
- name : Combine Results
206
209
id : combine
207
210
run : |
You can’t perform that action at this time.
0 commit comments