Skip to content

Commit 7e11436

Browse files
authored
Add possibility to run 'check released files' step not only for the Cluster Operator (#36)
Signed-off-by: Lukas Kral <lukywill16@gmail.com>
1 parent 22a3f78 commit 7e11436

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/actions/build/build-binaries/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ inputs:
1313
description: "Enable Strimzi Operator specific build steps (Helm charts install, CRDs install, dashboards install, docs checks, uncommitted changes check)"
1414
required: false
1515
default: "false"
16+
checkReleasedFiles:
17+
description: "Enable step for checking released files - using the `make release_files_check`"
18+
required: false
19+
default: "false"
1620

1721
runs:
1822
using: "composite"
@@ -86,7 +90,7 @@ runs:
8690
run: "make shellcheck"
8791

8892
- name: Check released files
89-
if: ${{ inputs.clusterOperatorBuild == 'true' }}
93+
if: ${{ inputs.clusterOperatorBuild == 'true' || inputs.checkReleasedFiles == 'true' }}
9094
shell: bash
9195
run: "make release_files_check"
9296

0 commit comments

Comments
 (0)