From a2832f4d55e220bcd60d8b211feb197955444afa Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Thu, 8 Jun 2023 01:51:30 -0700 Subject: [PATCH] Use the correct secrets for snapshot publishing Summary: I accidentally mixed the secret name for publishing to sonatype. The correct values are `SONATYPE_USERNAME` and `SONATYPE_PASSWORD`. After this snapshot publishing should be green. Reviewed By: NickGerleman Differential Revision: D46522897 fbshipit-source-id: 3ebb5bf5be32a7bbac1fefc9ed46c49be15bd56c --- .github/workflows/publish-android-snashot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-android-snashot.yml b/.github/workflows/publish-android-snashot.yml index ed90e3cc..5c9d00a4 100644 --- a/.github/workflows/publish-android-snashot.yml +++ b/.github/workflows/publish-android-snashot.yml @@ -31,6 +31,6 @@ jobs: - name: Publish to the Snapshot Repository run: ./gradlew publishToSonatype env: - ORG_GRADLE_PROJECT_NEXUS_USERNAME: ${{ secrets.ORG_GRADLE_PROJECT_NEXUS_USERNAME }} - ORG_GRADLE_PROJECT_NEXUS_PASSWORD: ${{ secrets.ORG_GRADLE_PROJECT_NEXUS_PASSWORD }} + ORG_GRADLE_PROJECT_SONATYPE_USERNAME: ${{ secrets.ORG_GRADLE_PROJECT_SONATYPE_USERNAME }} + ORG_GRADLE_PROJECT_SONATYPE_PASSWORD: ${{ secrets.ORG_GRADLE_PROJECT_SONATYPE_PASSWORD }} ORG_GRADLE_PROJECT_USE_SNAPSHOT: true