We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4979a39 commit 7fbee93Copy full SHA for 7fbee93
.github/workflows/release.yml
@@ -20,10 +20,12 @@ jobs:
20
- name: Decrypt secrets
21
run: |
22
echo ${{ secrets.ENCRYPT_KEY }} | release/signing-unpack.sh
23
- mv gradle.properties gradle.backup.properties
24
- cat gradle.backup.properties | grep -v configuration-cache > gradle.properties
25
- name: Deploy to Sonatype
26
- run: ./gradlew publish
+ env:
+ ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
+ ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
27
+ run: |
28
+ ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
29
- name: Build AAB & APK
30
31
./gradlew :demo:bundleRelease :demo:assembleRelease
0 commit comments