Skip to content

Commit

Permalink
action: Allow users to skip building CLI
Browse files Browse the repository at this point in the history
Signed-off-by: Martynas Pumputis <[email protected]>
  • Loading branch information
brb authored and squeed committed Oct 25, 2023
1 parent 0245001 commit 53d31ba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 53d31ba

Please sign in to comment.