You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/04/20 05:07:32 UTC

[dolphinscheduler] branch dev updated: [Python] Make detached signature during release (#9607)

This is an automated email from the ASF dual-hosted git repository.

zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 9d11be447a [Python] Make detached signature during release (#9607)
9d11be447a is described below

commit 9d11be447a2b830c944ac86e085168cca601facd
Author: Kerwin <37...@users.noreply.github.com>
AuthorDate: Wed Apr 20 13:07:27 2022 +0800

    [Python] Make detached signature during release (#9607)
---
 dolphinscheduler-python/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dolphinscheduler-python/pom.xml b/dolphinscheduler-python/pom.xml
index 6088bf7ac7..a4426a74df 100644
--- a/dolphinscheduler-python/pom.xml
+++ b/dolphinscheduler-python/pom.xml
@@ -105,7 +105,7 @@
                                     <arguments>
                                         <argument>-c</argument>
                                         <!-- We use `bash -c` here cause plugin exec-maven-plugin do not support wildcard-->
-                                        <argument>gpg --armor --sign dist/*.tar.gz</argument>
+                                        <argument>gpg --armor --detach-sign --digest-algo=SHA512 dist/*.tar.gz</argument>
                                     </arguments>
                                 </configuration>
                             </execution>
@@ -122,7 +122,7 @@
                                     <arguments>
                                         <argument>-c</argument>
                                         <!-- We use `bash -c` here cause plugin exec-maven-plugin do not support wildcard-->
-                                        <argument>gpg --armor --sign dist/*.whl</argument>
+                                        <argument>gpg --armor --detach-sign --digest-algo=SHA512 dist/*.whl</argument>
                                     </arguments>
                                 </configuration>
                             </execution>