Browse Source

[Python] Make detached signature during release (#9607)

3.0.0/version-upgrade
Kerwin 2 years ago committed by GitHub
parent
commit
9d11be447a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-python/pom.xml

4
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>

Loading…
Cancel
Save