We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c619fb8 commit 2ec2b5cCopy full SHA for 2ec2b5c
.github/workflows/dockerhub-release-matrix.yml
@@ -213,7 +213,11 @@ jobs:
213
| each { |content| $content | lines } # Split into lines
214
| flatten # Flatten the nested lists
215
| where { |line| $line != "" } # Filter empty lines
216
- | each { |line| {version: $line} } # Create objects
+ | each { |line|
217
+ # Extract just the version part after the last colon
218
+ let version = ($line | parse "supabase/postgres:{version}" | get version.0)
219
+ {version: $version}
220
+ }
221
)
222
}
223
0 commit comments