Skip to content

Commit

Permalink
fix: empty commit for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Aug 10, 2022
1 parent 879dd31 commit cf75c1b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/actions/setup-binaries/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ inputs:
description: 'Install'
required: false
default: 'false'
docker-buildx-driver:
description: 'Docker Buildx Driver'
required: false
default: 'docker-container'
kubectl:
description: 'Install'
required: false
Expand Down Expand Up @@ -79,12 +83,15 @@ runs:
id: docker-buildx
with:
install: true
driver: ${{inputs.docker-buildx-driver}}

# kubectl
- name: Setup | Kubectl
if: inputs.kubectl != 'false'
uses: azure/setup-kubectl@v2.1
id: kubectl

# yq
- name: Setup | YQ
if: inputs.yq != 'false'
shell: bash
Expand All @@ -96,6 +103,7 @@ runs:
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - | tar xz && sudo mv ${BINARY} /usr/bin/yq
yq --version
# ytt
- name: Setup | YTT
if: inputs.ytt != 'false'
uses: vmware-tanzu/carvel-setup-action@v1
Expand Down

0 comments on commit cf75c1b

Please sign in to comment.