Skip to content

Commit db6fd6b

Browse files
author
tylertitsworth
committed
update context
1 parent 71d0523 commit db6fd6b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/chart-ci.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ permissions: read-all
2020
concurrency:
2121
group: ${{ github.workflow }}-${{ github.ref }}
2222
cancel-in-progress: true
23-
env:
24-
PATH: ${{ secrets.KUBECTL_PATH }}:$PATH
25-
KUBECONFIG: ${{ secrets.KUBECONFIG_PATH }}
2623
jobs:
2724
helm-ci:
2825
runs-on: kubectl
@@ -45,4 +42,9 @@ jobs:
4542
fi
4643
- name: Helm Lint, Install, and Test
4744
if: steps.changed.outputs.changed == 'true'
48-
run: ct lint-and-install --target-branch ${{ github.event.repository.default_branch }} --config .github/ct.yaml --debug --namespace helm-ci
45+
run: |
46+
echo "${{ secrets.KUBECTL_PATH }}" >> $GITHUB_PATH
47+
kubectl config use-context kubeflow
48+
ct lint-and-install --target-branch ${{ github.event.repository.default_branch }} --config .github/ct.yaml --debug --namespace helm-ci
49+
env:
50+
KUBECONFIG: ${{ secrets.KUBECONFIG_PATH }}

0 commit comments

Comments
 (0)