Skip to content

Commit

Permalink
adapting the script make_release to sign commit
Browse files Browse the repository at this point in the history
Signed-off-by: DONNOT Benjamin <[email protected]>
  • Loading branch information
BDonnot committed Oct 15, 2024
1 parent 17db258 commit 90f4e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def modify_and_push_docker(version, # grid2op version
start_subprocess_print(["git", "add", f'{os.path.join(PATH_PREVIOUS_RUNNER, f"res_agent_{version}")}/*'])

# Commit
start_subprocess_print(["git", "commit", "-S", "-m", "Release v{}".format(version)])
start_subprocess_print(["git", "commit", "-s", "-S", "-m", "Release v{}".format(version)])
if not is_prerelease:
# Create a new git tag
start_subprocess_print(["git", "tag", "-s", "-a", "v{}".format(version), "-m", "Release v{}".format(version)])
Expand Down

0 comments on commit 90f4e39

Please sign in to comment.