From 234dd5f096c207ffe49e659ef016b7859fe91269 Mon Sep 17 00:00:00 2001 From: rgaudin Date: Fri, 20 Dec 2024 07:35:03 +0000 Subject: [PATCH] Fix OS_NAME for Trigger_Docker job in CD In commit 2321717, OS_NAME was introduced to build_definition in order to support jammy + focal. The Trigger_Docker job was not updated and was to expecting to run on OS_NAME=linux for which there is now line anymore and thus no possibility to trigger --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index ba96d663..c7b988f0 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -306,7 +306,7 @@ jobs: runs-on: ubuntu-22.04 env: COMPILE_CONFIG: native_static - OS_NAME: linux + OS_NAME: focal steps: - name: Checkout code uses: actions/checkout@v4