From c070e0318890e68dbad3bfbf0c36835c7d533b97 Mon Sep 17 00:00:00 2001 From: Tom Lebreux Date: Fri, 1 Aug 2025 23:32:22 -0400 Subject: [PATCH] Remove use of Dapper for go generate --- .github/workflows/scripts/release-against-rancher.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/scripts/release-against-rancher.sh b/.github/workflows/scripts/release-against-rancher.sh index cc9ff3a80..a42a7f402 100755 --- a/.github/workflows/scripts/release-against-rancher.sh +++ b/.github/workflows/scripts/release-against-rancher.sh @@ -82,12 +82,7 @@ fi yq --inplace ".webhookVersion = \"${NEW_CHART_VERSION}+up${NEW_WEBHOOK_VERSION_SHORT}\"" ./build.yaml -# Downloads dapper -make .dapper - -# DAPPER_MODE=bind will make sure we output everything that changed -DAPPER_MODE=bind ./.dapper go generate ./... || true -DAPPER_MODE=bind ./.dapper rm -rf go .config +go generate ./... git add . git commit -m "Bump webhook to ${NEW_CHART_VERSION}+up${NEW_WEBHOOK_VERSION_SHORT}"