Skip to content

Commit

Permalink
chore:rm redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
samrose committed Dec 21, 2024
1 parent 90a45f4 commit e42ab66
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dockerhub-release-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,16 +180,16 @@ jobs:
nix run nixpkgs#nushell -- -c '
# Parse the matrix configuration directly
let matrix_config = ${{ fromJson(needs.prepare.outputs.matrix_config) }}
let versions = $matrix_config.include | get version
# Get versions directly from include array
let versions = ($matrix_config.include | get version)

echo "Versions: $versions"
# Convert the table of versions to a simple list of strings
let versions_str = ($versions | get version | join ",")
# Convert the versions to a comma-separated string
let versions_str = ($versions | join ",")
$"versions=$versions_str" | save --append $env.GITHUB_ENV
'
- name: Download Results Artifacts
run: |
nix run nixpkgs#nushell -- -c '
Expand Down

0 comments on commit e42ab66

Please sign in to comment.