Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kjarosh committed Aug 8, 2024
1 parent b5934cf commit 9723cb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/scripts/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def get_current_time_version():

def get_current_day_id():
now = datetime.now()
return f"{now.year - 2020}{now.strftime("%j")}"
day = now.strftime("%j")
return f"{now.year - 2020}{day}"


def github_output(variable, value):
Expand Down

0 comments on commit 9723cb0

Please sign in to comment.