Skip to content

Commit 0ef7b62

Browse files
committed
fix
1 parent 1e09a6c commit 0ef7b62

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/k8s-e2e.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ jobs:
9090
cl_image_tag: ${{ env.CHAINLINK_VERSION }}
9191
test_command_to_run: |
9292
unset ENV_JOB_IMAGE
93-
nix develop -c sh -c "export KUBECONFIG=${KUBECONFIG} && cd lib && make k8s_test_e2e_ci"
93+
cp $KUBECONFIG ./kubeconfig
94+
echo "Kubeconfig copied to: $(pwd)/kubeconfig"
95+
echo "Lines in kubeconfig: $(wc -l < ./kubeconfig)"
96+
nix develop -c sh -c "export KUBECONFIG=$(pwd)/kubeconfig && cd lib && make k8s_test_e2e_ci"
9497
artifacts_location: ./e2e/logs
9598
publish_check_name: E2E Test Results
9699
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)