Skip to content

Commit 45de6fe

Browse files
authored
Merge pull request #48 from OpenVoxProject/fix_alpine_2
fix: broken build inputs
2 parents f9e2e4a + dd00126 commit 45de6fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
run: echo "matrix=$(yq -o json build_versions.yaml | jq -c)" >> $GITHUB_OUTPUT
2727

2828
- id: server_version
29-
run: echo "server_version=${{ steps.set-matrix.outputs.matrix.server_version }}" | cut -d- -f1 >> $GITHUB_OUTPUT
29+
run: echo "server_version=$(yq '.include[1].server_version' build_versions.yaml )" | cut -d- -f1 >> $GITHUB_OUTPUT
3030

3131
- id: db_version
32-
run: echo "db_version=${{ steps.set-matrix.outputs.matrix.db_version }}" | cut -d- -f1 >> $GITHUB_OUTPUT
32+
run: echo "db_version=$(yq '.include[1].db_version' build_versions.yaml)" | cut -d- -f1 >> $GITHUB_OUTPUT
3333

3434
build-X86-container:
3535
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)