From 3546f6fcadd8acd0ea0f05a341e737f546caccda Mon Sep 17 00:00:00 2001 From: pkippes Date: Mon, 12 Feb 2024 15:01:54 +0100 Subject: [PATCH 1/2] Empty-Commit From 555b8cb6abebb09a26386e061ffc0e66789c95d0 Mon Sep 17 00:00:00 2001 From: Kevin Duret Date: Mon, 12 Feb 2024 16:42:35 +0100 Subject: [PATCH 2/2] fix(ci): fix expression in promote action (#4898) --- .github/actions/promote-to-stable/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 91f445adb..dd2990086 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -60,7 +60,7 @@ runs: shell: bash - name: Promote DEB package to stable - if: ${{ startsWith(inputs.distrib, 'bullseye') || startsWith(inputs.distrib, 'bookworm' }} + if: ${{ contains(fromJSON('["bullseye", "bookworm"]'), inputs.distrib) }} run: | echo "[DEBUG] - Distrib: ${{ inputs.distrib }}"