Skip to content

Commit

Permalink
move back
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes committed Oct 30, 2024
1 parent fd3855d commit c2ac6ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/Java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ jobs:
- name: Combine JARs
shell: bash
run: |
mkdir -p ~/.gnupg
echo -e "use-agent\npinentry-mode loopback\nno-tty\nbatch\n" > ~/.gnupg/gpg.conf
echo -e "allow-loopback-pinentry\n" > ~/.gnupg/gpg-agent.conf
export XML='
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand Down
2 changes: 1 addition & 1 deletion scripts/jdbc_maven_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def exec(cmd):
shutil.copyfile(jar, os.path.join(results_dir, os.path.basename(jar)))

print("JARs created, uploading (this can take a while!)")
deploy_cmd_prefix = 'mvn gpg:sign-and-deploy-file -Durl=%s -DrepositoryId=ossrh' % deploy_url
deploy_cmd_prefix = 'mvn gpg:sign-and-deploy-file -DgpgArguments=--batch -Dpassphrase= -Durl=%s -DrepositoryId=ossrh' % deploy_url
exec("%s -DpomFile=%s -Dfile=%s" % (deploy_cmd_prefix, pom, binary_jar))
exec("%s -Dclassifier=sources -DpomFile=%s -Dfile=%s" % (deploy_cmd_prefix, pom, sources_jar))
exec("%s -Dclassifier=javadoc -DpomFile=%s -Dfile=%s" % (deploy_cmd_prefix, pom, javadoc_jar))
Expand Down

0 comments on commit c2ac6ed

Please sign in to comment.