This commit is contained in:
parent
d75e249c10
commit
210d77f68b
1 changed files with 8 additions and 9 deletions
|
@ -23,23 +23,22 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Setup Homebrew
|
|
||||||
uses: https://github.com/Homebrew/actions/setup-homebrew@master
|
|
||||||
|
|
||||||
- name: Setup Workflow Tools
|
- name: Setup Workflow Tools
|
||||||
shell: bash
|
shell: bash
|
||||||
run: brew install kubernetes-cli minio-mc
|
run: |
|
||||||
|
curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl"
|
||||||
|
chmod +x kubectl
|
||||||
|
sudo mv kubectl /usr/local/bin/
|
||||||
|
|
||||||
|
curl -LO "https://dl.min.io/client/mc/release/linux-amd64/mc"
|
||||||
|
chmod +x mc
|
||||||
|
sudo mv mc /usr/local/bin/
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: https://github.com/actions/setup-python@v5
|
uses: https://github.com/actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
|
|
||||||
- name: Setup Node
|
|
||||||
uses: https://github.com/actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20.x
|
|
||||||
|
|
||||||
- name: Write kubeconfig
|
- name: Write kubeconfig
|
||||||
id: kubeconfig
|
id: kubeconfig
|
||||||
uses: https://github.com/timheuer/base64-to-file@v1
|
uses: https://github.com/timheuer/base64-to-file@v1
|
||||||
|
|
Loading…
Reference in a new issue