From: David Galloway Date: Thu, 23 Jun 2022 13:52:14 +0000 (-0400) Subject: ceph-tag: Sign the version commit X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5037ad46c13f6d9f598c8a96b6b87e9f776290d4;p=ceph-build.git ceph-tag: Sign the version commit Signed-off-by: David Galloway --- diff --git a/ansible/roles/ceph-release/tasks/create.yml b/ansible/roles/ceph-release/tasks/create.yml index 5969a7b1..9134c3a6 100644 --- a/ansible/roles/ceph-release/tasks/create.yml +++ b/ansible/roles/ceph-release/tasks/create.yml @@ -89,8 +89,20 @@ DEBFULLNAME: "{{ debfullname }}" when: tag|bool is true +- name: git config user.name + command: git config user.name "Ceph Release Team" + args: + chdir: ceph + when: tag|bool is true + +- name: git config user.email + command: git config user.email "ceph-maintainers@ceph.io" + args: + chdir: ceph + when: tag|bool is true + - name: commit the version changes - command: git commit -a -m "{{ version }}" + command: git commit -a -s -m "{{ version }}" args: chdir: ceph when: tag|bool is true