Skip to content

Commit 6de9457

Browse files
committed
Fix gradle argument syntax
This looks the same to me and behaves the same on my machine but apparantly makes a difference to github actions.
1 parent c210633 commit 6de9457

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
sonatypePassword: ${{ secrets.sonatypePassword }}
7575
signingKey: ${{ secrets.signingPrivateKey }}
7676
signingPassword: ${{ secrets.signingPrivateKeyPassword }}
77-
run: ./gradlew publishAarReleasePublicationToMavenCentralRepository closeAndReleaseRepository "-PsonatypeUsername=$sonatypeUsername" "-PsonatypePassword=$sonatypePassword" "-PinMemorySigningKey=$signingKey" "-PinMemoryKeyPassword=$signingPassword" --no-daemon
77+
run: ./gradlew publishAarReleasePublicationToMavenCentralRepository closeAndReleaseRepository -PsonatypeUsername="$sonatypeUsername" -PsonatypePassword="$sonatypePassword" -PinMemorySigningKey="$signingKey" -PinMemoryKeyPassword="$signingPassword" --no-daemon
7878

7979
tag:
8080
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)