Skip to content

Commit

Permalink
Merge pull request #13 from gittuf/sign-commits-always
Browse files Browse the repository at this point in the history
Sign all commits
  • Loading branch information
adityasaky authored May 2, 2024
2 parents 89b0557 + 5d70391 commit ffa44c2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions run-demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ def run_demo():
cmd = f"git config --local gpg.format ssh"
display_command(cmd)
subprocess.call(shlex.split(cmd))
cmd = f"git config --local commit.gpgsign true"
display_command(cmd)
subprocess.call(shlex.split(cmd))
cmd = f"git config --local user.signingkey {authorized_key_path_git}"
display_command(cmd)
subprocess.call(shlex.split(cmd))
Expand Down

0 comments on commit ffa44c2

Please sign in to comment.