]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-tag: Sign the version commit 2026/head
authorDavid Galloway <dgallowa@redhat.com>
Thu, 23 Jun 2022 13:52:14 +0000 (09:52 -0400)
committerDavid Galloway <dgallowa@redhat.com>
Fri, 24 Jun 2022 17:22:04 +0000 (13:22 -0400)
Signed-off-by: David Galloway <dgallowa@redhat.com>
ansible/roles/ceph-release/tasks/create.yml

index 5969a7b1dacb46f8de78a476481c574312c68116..9134c3a6b6d61541ad1f1961d96b5a2c1eed67ac 100644 (file)
     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