From 99b8bf937b88b2c4507550a1fd827a948fa1943b Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Thu, 21 May 2026 03:43:25 +0100 Subject: [PATCH] fix(config-release): remove hardcoded force.commit and force.minor The hardcoded force.commit (960207e4, from 2022) combined with force.minor: 16 made semver-generator emit deterministic versions that already existed as tags (v1.16.1-v1.16.5), causing goreleaser to fail with 'git tag vX was not made against commit HEAD'. Restores the intent of 99338e8 which was undone by the later fixup commits a77bc0c and 5f205e9. Also fixes 2-space leading indentation. --- config-release.yaml | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/config-release.yaml b/config-release.yaml index 9bb9eae..45f5211 100644 --- a/config-release.yaml +++ b/config-release.yaml @@ -1,13 +1,10 @@ - version: 1 - force: - major: 1 - minor: 16 # Start from v1.16.x - existing: true - strict: false - commit: 960207e4677476ad31a9f389f74eaf9f33d49613 - wording: - minor: - - change - - improve - major: - - breaking \ No newline at end of file +version: 1 +force: + existing: true + strict: false +wording: + minor: + - change + - improve + major: + - breaking