made changes reflected in comments

This commit is contained in:
Tommy Barnes 2022-01-04 17:43:40 -05:00
parent 1ec947fb41
commit 8397d0b1a7
3 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,4 @@
name: Integration test for setup-kubectl-v1
name: Integration test for setup-kubectl
on: # rebuild any PRs and main branch changes
pull_request:
branches:

View file

@ -29,8 +29,8 @@ jobs:
- name: Reset promotion branch
if: ${{ steps.extract-branch-status.outputs.exists == 'true' }}
run: |
git fetch origin master:master
git reset --hard master
git fetch origin main:main
git reset --hard main
- name: Install packages
run: |
rm -rf node_modules/

View file

@ -20,7 +20,6 @@ export function getkubectlDownloadURL(version: string, arch: string): string {
case 'Windows_NT':
default:
return util.format('https://storage.googleapis.com/kubernetes-release/release/%s/bin/windows/%s/kubectl.exe', version, arch);
}
}