Skip to content

Commit

Permalink
Fix publishing args
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Sep 8, 2021
1 parent b4aad8f commit 4f9cd5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
command: |
if [ "${CIRCLE_BRANCH}" == "main" ]; then
echo "$MAVEN_CENTRAL_SEC_RING" | base64 -d > $HOME/secring.gpg
./gradlew publish -Psonatype.username="$SONATYPE_USERNAME" -Psonatype.password="$SONATYPE_PASSWORD" -Psigning.keyId=0E7A8B89 -Psigning.password="$MAVEN_CENTRAL_KEY_PASSPHRASE" -Psigning.secretKeyRingFile=$HOME/secring.gpg -Porg.gradle.parallel=false
./gradlew publish -PsonatypeUsername="$SONATYPE_USERNAME" -PsonatypePassword="$SONATYPE_PASSWORD" -Psigning.keyId=0E7A8B89 -Psigning.password="$MAVEN_CENTRAL_KEY_PASSPHRASE" -Psigning.secretKeyRingFile=$HOME/secring.gpg -Porg.gradle.parallel=false
fi
- save_cache:
paths:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
command: |
if [ "${CIRCLE_BRANCH}" == "main" ]; then
echo "$MAVEN_CENTRAL_SEC_RING" | base64 -D -o $HOME/secring.gpg
./gradlew publishApple -Psonatype.username="$SONATYPE_USERNAME" -Psonatype.password="$SONATYPE_PASSWORD" -Psigning.keyId=0E7A8B89 -Psigning.password="$MAVEN_CENTRAL_KEY_PASSPHRASE" -Psigning.secretKeyRingFile=$HOME/secring.gpg -Porg.gradle.parallel=false
./gradlew publishApple -PsonatypeUsername="$SONATYPE_USERNAME" -PsonatypePassword="$SONATYPE_PASSWORD" -Psigning.keyId=0E7A8B89 -Psigning.password="$MAVEN_CENTRAL_KEY_PASSPHRASE" -Psigning.secretKeyRingFile=$HOME/secring.gpg -Porg.gradle.parallel=false
fi
- save_cache:
paths:
Expand All @@ -85,4 +85,4 @@ workflows:
- build-linux:
context: opensource-maven
- build-macos:
context: opensource-maven
context: opensource-maven

0 comments on commit 4f9cd5f

Please sign in to comment.