From 4a85b8264af3c9790db8ae1e34f4dbc890b319c4 Mon Sep 17 00:00:00 2001 From: jakobmoellerdev Date: Tue, 22 Oct 2024 21:27:31 +0200 Subject: [PATCH] chore(ci): ensure correct make generate --- .github/workflows/release.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 714057e57..287b39cdf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -282,8 +282,9 @@ jobs: git checkout ${GITHUB_REF#refs/heads/} v="$(go run ./api/version/generate bump-version)" echo "$v" > VERSION - git add VERSION - git commit -m "Update version file to $v" + make generate + git add --all + git commit -m "Update version to $v" git push origin ${GITHUB_REF#refs/heads/} echo "Next branch version is $v"