Skip to content

Commit

Permalink
Change underscore to hyphen in slug name
Browse files Browse the repository at this point in the history
  • Loading branch information
hvidy committed Feb 14, 2024
1 parent 91b7fc2 commit c122dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/generate_identifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def run_command_check_output(cmd):
def encode(name, i):
result_str = name
if i > 0:
result_str += "_"+str(i)
result_str += "-"+str(i)
return result_str


Expand Down

0 comments on commit c122dbc

Please sign in to comment.