Skip to content

Commit ec5bf1d

Browse files
authored
Add timezone in release times (#10)
1 parent 89b09b7 commit ec5bf1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (r *Deploy) printReleaseTimeBoard(releaseTime time.Time, releaseBranches []
117117
var times [][]string
118118

119119
for _, branch := range releaseBranches {
120-
timesRow := []string{branch, releaseTime.Format("15:04")}
120+
timesRow := []string{branch, releaseTime.Format("15:04 MST")}
121121
releaseTime = releaseTime.Add(intervalDuration)
122122
times = append(times, timesRow)
123123
}

0 commit comments

Comments
 (0)