fix: typo in publish command
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 11s
Publish / Check GoReleaser config (pull_request) Has been skipped
Publish / Publish provider (pull_request) Has been skipped
CI Workflow / Code coverage report (pull_request) Has been cancelled
CI Workflow / Test readiness for publishing provider (pull_request) Has been cancelled
CI Workflow / CI (pull_request) Has been cancelled

fix: refactor build action
This commit is contained in:
Marcel S. Henselin 2026-01-30 13:35:36 +01:00
parent 49c84c6d07
commit 96acb50433
2 changed files with 42 additions and 12 deletions

View file

@ -103,7 +103,7 @@ func publish() error {
}
// Create release dir - only the contents of this need to be uploaded to S3
log.Printf("* Creating reelase directory")
log.Printf("* Creating release directory")
err = os.MkdirAll(path.Join(p.RootPath, "release"), os.ModePerm)
if err != nil && !errors.Is(err, fs.ErrExist) {
return fmt.Errorf("error creating '%s' dir: %w", path.Join(p.RootPath, "release"), err)