File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -180,16 +180,16 @@ jobs:
180
180
nix run nixpkgs#nushell -- -c '
181
181
# Parse the matrix configuration directly
182
182
let matrix_config = ${{ fromJson(needs.prepare.outputs.matrix_config) }}
183
-
184
- let versions = $matrix_config.include | get version
185
-
183
+
184
+ # Get versions directly from include array
185
+ let versions = ($matrix_config.include | get version)
186
+
186
187
echo "Versions : $versions"
187
-
188
- # Convert the table of versions to a simple list of strings
189
- let versions_str = ($versions | get version | join ",")
188
+
189
+ # Convert the versions to a comma-separated string
190
+ let versions_str = ($versions | join ",")
190
191
$"versions=$versions_str" | save --append $env.GITHUB_ENV
191
192
'
192
-
193
193
- name: Download Results Artifacts
194
194
run: |
195
195
nix run nixpkgs#nushell -- -c '
You can’t perform that action at this time.
0 commit comments