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.
2 parents f9e2e4a + dd00126 commit 45de6feCopy full SHA for 45de6fe
.github/workflows/build_container.yml
@@ -26,10 +26,10 @@ jobs:
26
run: echo "matrix=$(yq -o json build_versions.yaml | jq -c)" >> $GITHUB_OUTPUT
27
28
- id: server_version
29
- run: echo "server_version=${{ steps.set-matrix.outputs.matrix.server_version }}" | cut -d- -f1 >> $GITHUB_OUTPUT
+ run: echo "server_version=$(yq '.include[1].server_version' build_versions.yaml )" | cut -d- -f1 >> $GITHUB_OUTPUT
30
31
- id: db_version
32
- run: echo "db_version=${{ steps.set-matrix.outputs.matrix.db_version }}" | cut -d- -f1 >> $GITHUB_OUTPUT
+ run: echo "db_version=$(yq '.include[1].db_version' build_versions.yaml)" | cut -d- -f1 >> $GITHUB_OUTPUT
33
34
build-X86-container:
35
runs-on: ubuntu-24.04
0 commit comments