We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c297b8e commit 8d43172Copy full SHA for 8d43172
.github/workflows/ci.yml
@@ -52,7 +52,12 @@ jobs:
52
run: |
53
echo "CGO_ENABLED=1" >> $GITHUB_ENV
54
KUBEBUILDER_ASSETS=$(make --silent kubebuilder-assets-path)
55
+ if [ -z "$KUBEBUILDER_ASSETS" ]; then
56
+ echo "Error: Failed to get KUBEBUILDER_ASSETS path"
57
+ exit 1
58
+ fi
59
echo "KUBEBUILDER_ASSETS="$KUBEBUILDER_ASSETS"" >> $GITHUB_ENV
60
+ echo "$KUBEBUILDER_ASSETS" >> $GITHUB_PATH
61
62
# Certain tests that require special setup (e.g., those that should be run with Ginkgo CLI only) will
63
# be skipped in this step.
0 commit comments