-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: fix publish-to-maven script #966
Conversation
@parthchandra fyi |
@@ -80,7 +80,7 @@ then | |||
fi | |||
|
|||
# Default GPG command to use | |||
GPG="gpg" | |||
GPG="gpg --pinentry-mode loopback" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got gpg timeouts before I added this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing this @andygrove, I should have done this in the first place.
@@ -96,7 +96,7 @@ GIT_HASH=$(git rev-parse --short HEAD) | |||
echo "Creating Nexus staging repository" | |||
|
|||
REPO_REQUEST="<promoteRequest><data><description>Apache Datafusion Comet $COMET_VERSION (commit $GIT_HASH)</description></data></promoteRequest>" | |||
REPO_REQUEST_RESPONSE=$(curl -I -X POST -d "$REPO_REQUEST" -u $ASF_USERNAME:$ASF_PASSWORD \ | |||
REPO_REQUEST_RESPONSE=$(curl -X POST -d "$REPO_REQUEST" -u $ASF_USERNAME:$ASF_PASSWORD \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got an error about using multiple http methods before changing this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fixes!
@@ -80,7 +80,7 @@ then | |||
fi | |||
|
|||
# Default GPG command to use | |||
GPG="gpg" | |||
GPG="gpg --pinentry-mode loopback" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing this @andygrove, I should have done this in the first place.
Which issue does this PR close?
N/A
Rationale for this change
Fix two issues that I ran into when publishing 0.3.0-rc1.
What changes are included in this PR?
How are these changes tested?