Adjust Circleci workflow to make the Docker images build

Closes #12753
This commit is contained in:
Bjørn Erik Pedersen
2024-08-26 12:39:07 +02:00
parent 5f667f8796
commit 445283a593
3 changed files with 143 additions and 112 deletions

View File

@@ -101,7 +101,8 @@ func (r *ReleaseHandler) Run() error {
return err
}
if _, err := r.git("commit", "-a", "-m", fmt.Sprintf("%s Bump versions for release of %s\n\n[ci skip]", commitPrefix, newVersion)); err != nil {
// The reason we use NOCIRCLECI, see https://github.com/gohugoio/hugo/issues/12753
if _, err := r.git("commit", "-a", "-m", fmt.Sprintf("%s Bump versions for release of %s\n\nNOCIRCLECI", commitPrefix, newVersion)); err != nil {
return err
}