From 8486189d41b21521b5ccd6e98221824139eb7836 Mon Sep 17 00:00:00 2001 From: Vladimir Ischenko Date: Sun, 8 Dec 2024 10:54:23 +0300 Subject: [PATCH] Test action OCI --- .github/workflows/ci-oci-install.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-oci-install.yml b/.github/workflows/ci-oci-install.yml index 5aefcd3af9..383715a8f4 100644 --- a/.github/workflows/ci-oci-install.yml +++ b/.github/workflows/ci-oci-install.yml @@ -75,6 +75,8 @@ jobs: - name: Set default for RPM built run: | echo "rpm_built=true" >> $GITHUB_ENV + echo "deb_built=true" >> $GITHUB_ENV + - name: Determine affected distributions id: determine-distros @@ -88,11 +90,11 @@ jobs: id: set-matrix run: | deb_matrix=$(echo '[ - {"execute": '${{ github.event.inputs.ubuntu2204 || false }}', "name": "Ubuntu22.04", "os": "ubuntu2204", "distr": "generic"} + {"execute": '${{ github.event.inputs.ubuntu2204 || true }}', "name": "Ubuntu22.04", "os": "ubuntu2204", "distr": "generic"} ]' | jq -c '.[] | select(.execute == true)') rpm_matrix=$(echo '[ - {"execute": '${{ github.event.inputs.centos9s || false }}', "name": "CentOS9S", "os": "centos9s", "distr": "generic"} + {"execute": '${{ github.event.inputs.centos9s || true }}', "name": "CentOS9S", "os": "centos9s", "distr": "generic"} ]' | jq -c '.[] | select(.execute == true)') if [[ "${{ github.event.inputs.deb_built }}" == "true" ]] && [[ "${{ github.event.inputs.rpm_built }}" == "true" ]]; then