Skip to content

asdf

asdf #1

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
- testdownloads
jobs:
download:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- id: kubectldl
name: Download kubectl
run: |
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
curl -LO "https://dl.k8s.io/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl.sha256"
ls -lt
echo "HI"