From 09a3ef2e526972384c8aaf773d94d80fbb6ac257 Mon Sep 17 00:00:00 2001 From: Lukas Kral Date: Thu, 7 May 2026 11:06:48 +0200 Subject: [PATCH] Add possibility to run 'check released files' step not only for the Cluster Operator Signed-off-by: Lukas Kral --- .github/actions/build/build-binaries/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/build/build-binaries/action.yml b/.github/actions/build/build-binaries/action.yml index cb5c36f..38e4fe4 100644 --- a/.github/actions/build/build-binaries/action.yml +++ b/.github/actions/build/build-binaries/action.yml @@ -13,6 +13,10 @@ inputs: description: "Enable Strimzi Operator specific build steps (Helm charts install, CRDs install, dashboards install, docs checks, uncommitted changes check)" required: false default: "false" + checkReleasedFiles: + description: "Enable step for checking released files - using the `make release_files_check`" + required: false + default: "false" runs: using: "composite" @@ -86,7 +90,7 @@ runs: run: "make shellcheck" - name: Check released files - if: ${{ inputs.clusterOperatorBuild == 'true' }} + if: ${{ inputs.clusterOperatorBuild == 'true' || inputs.checkReleasedFiles == 'true' }} shell: bash run: "make release_files_check"