Skip to content

Commit 2c662f2

Browse files
committed
chore: ensure proper variable naming
1 parent 613b45c commit 2c662f2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/dockerhub-release-matrix.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,10 @@ jobs:
177177
}
178178
let pg_version = (open ansible/vars.yml | get postgres_release | get $release_key | str trim)
179179
180-
# Use to-json with compact formatting
181180
let matrix = {include: [{version: $pg_version}]}
182-
$"matrix=(${matrix | to json -r})" | save --append $env.GITHUB_OUTPUT
181+
let matrix_json = ($matrix | to json -r)
182+
$"matrix=($matrix_json)" | save --append $env.GITHUB_OUTPUT
183183
'
184-
185184
publish:
186185
needs: get_publish_version
187186
strategy:

0 commit comments

Comments
 (0)