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:
180180 nix run nixpkgs#nushell -- -c '
181181 # Parse the matrix configuration directly
182182 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+
186187 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 ",")
190191 $"versions=$versions_str" | save --append $env.GITHUB_ENV
191192 '
192-
193193 - name: Download Results Artifacts
194194 run: |
195195 nix run nixpkgs#nushell -- -c '
You can’t perform that action at this time.
0 commit comments