Use name in backend types instead of alias (#3142)

This commit is contained in:
6543
2024-01-09 15:22:59 +01:00
committed by GitHub
parent 1eacf74376
commit cd59a85230
12 changed files with 48 additions and 108 deletions

View File

@@ -31,7 +31,7 @@ func (r *Runner) createLogger(logger zerolog.Logger, uploads *sync.WaitGroup, wo
return func(step *backend.Step, rc multipart.Reader) error {
loglogger := logger.With().
Str("image", step.Image).
Str("stage", step.Alias).
Str("workflowID", workflow.ID).
Logger()
part, rerr := rc.NextPart()