Skip to content

Commit

Permalink
ci: make show_manual_release_cmd.vsh use a fixed weekly.YYY.WW format…
Browse files Browse the repository at this point in the history
… for the weekly release tags
  • Loading branch information
spytheman committed Jan 6, 2025
1 parent 2aa5651 commit d313355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/show_manual_release_cmd.vsh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ year := now.year
week := int(math.ceil(f64(now.year_day()) / 7.0))

mut remote_name := 'origin'
mut release_tag := 'weekly.${year}.${week}'
mut release_tag := 'weekly.${year:04}.${week:02}'

if os.args.len > 1 {
remote_name = os.args[1]
Expand Down

0 comments on commit d313355

Please sign in to comment.