From 401fde36b3d0a3b177482f8a57380f9cc1e6f2e6 Mon Sep 17 00:00:00 2001 From: Martynas Pumputis Date: Thu, 19 Oct 2023 11:26:17 +0200 Subject: [PATCH] action: Allow users to skip building CLI Signed-off-by: Martynas Pumputis --- action.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yaml b/action.yaml index ef82668a62..15f9090f98 100644 --- a/action.yaml +++ b/action.yaml @@ -16,10 +16,14 @@ inputs: description: 'Cilium CLI executable name' required: true default: 'cilium' + skip-build: + description: 'Skip building CLI from source' + default: 'false' runs: using: "composite" steps: - name: Check if we should build the Cilium CLI from source + if: ${{ inputs.skip-build != 'true' }} id: build-cli shell: bash run: |