Skip to content

Commit a104c0c

Browse files
committed
Fix workflow
Signed-off-by: Pete Wall <[email protected]>
1 parent 99e06c9 commit a104c0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/integration-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
if [ -f "kind-cluster-config.yaml" ]; then
5151
echo "cluster-type=kind-with-config" >> "${GITHUB_OUTPUT}"
52-
if [ -f "minikube-cluster-config.yaml" ]; then
52+
elif [ -f "minikube-cluster-config.yaml" ]; then
5353
echo "cluster-type=minikube" >> "${GITHUB_OUTPUT}"
5454
else
5555
echo "cluster-type=kind" >> "${GITHUB_OUTPUT}"
@@ -71,6 +71,8 @@ jobs:
7171
- name: Create Minikube cluster
7272
if: ${{ steps.check-cluster-config.outputs.cluster-type == 'minikube' }}
7373
uses: medyagh/setup-minikube@cea33675329b799adccc9526aa5daccc26cd5052
74+
env:
75+
KUBECONFIG: "tests/integration/${{ matrix.test }}/kubeconfig.yaml"
7476

7577
- name: Run test
7678
working-directory: "tests/integration/${{ matrix.test }}"

0 commit comments

Comments
 (0)