From 0884c7a744f544334f1b6a3234301ea6021b4da1 Mon Sep 17 00:00:00 2001 From: Julien Date: Tue, 19 Nov 2024 19:14:16 +0100 Subject: [PATCH] Release all UBI images (#333) https://github.com/pulumi/pulumi-docker-containers/pull/326/ updated the UBI imags so that we can build for the missing Python and Node.js versions, but forgot to updated the release script. --- .github/workflows/release.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6726600..e1462a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -632,20 +632,8 @@ jobs: - uses: actions/checkout@master - name: Define Matrix for UBI SDK Manifests id: define-matrix - # Filter out the nodejs 22 and 23 versions from the matrix, as they are not supported on UBI. - # https://access.redhat.com/articles/3376841 - # Filter out the python 3.10 and 3.13 versions from the matrix, as they are not supported on UBI. - # https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/installing_and_using_dynamic_programming_languages/assembly_introduction-to-python_installing-and-using-dynamic-programming-languages#con_python-versions_assembly_introduction-to-python - run: | - echo matrix=$(python ./.github/scripts/matrix/gen-matrix.py --no-arch | - jq '.include |= map( - select( - (.sdk != "nodejs" or .language_version != "22") and - (.sdk != "nodejs" or .language_version != "23") and - (.sdk != "python" or .language_version != "3.10") and - (.sdk != "python" or .language_version != "3.13") - ) - )') >> "$GITHUB_OUTPUT" + run: | + echo matrix=$(python ./.github/scripts/matrix/gen-matrix.py --no-arch) >> "$GITHUB_OUTPUT" ubi-sdk: name: UBI SDK images