Skip to content

Commit

Permalink
chore: ensure proper variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
samrose committed Dec 19, 2024
1 parent 613b45c commit 2c662f2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dockerhub-release-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,10 @@ jobs:
}
let pg_version = (open ansible/vars.yml | get postgres_release | get $release_key | str trim)
# Use to-json with compact formatting
let matrix = {include: [{version: $pg_version}]}
$"matrix=(${matrix | to json -r})" | save --append $env.GITHUB_OUTPUT
let matrix_json = ($matrix | to json -r)
$"matrix=($matrix_json)" | save --append $env.GITHUB_OUTPUT
'
publish:
needs: get_publish_version
strategy:
Expand Down

0 comments on commit 2c662f2

Please sign in to comment.