From 4ed9deb34e72cd4049ff7b86d1c58ef6078eb212 Mon Sep 17 00:00:00 2001 From: Knut Wannheden Date: Wed, 2 Jul 2025 06:04:12 +0000 Subject: [PATCH] refactor: sonatypeupdate Use this link to re-run the recipe: https://app.moderne.io/builder/UKjAsK9GN?organizationId=QUxML09wZW4gU291cmNlL09wZW5SZXdyaXRl Co-authored-by: Moderne --- .github/workflows/ci.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bd3a6bf..506f4f55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: if: github.event_name != 'pull_request' run: ./gradlew ${{ env.GRADLE_SWITCHES }} snapshot publish -PforceSigning -x test env: - ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.OSSRH_USERNAME }} - ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.OSSRH_TOKEN }} + ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }} + ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_TOKEN }} ORG_GRADLE_PROJECT_signingKey: ${{ secrets.OSSRH_SIGNING_KEY }} ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.OSSRH_SIGNING_PASSWORD }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1a947537..2f640f32 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,8 +15,8 @@ env: GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"' GRADLE_SWITCHES: --console=plain --info --stacktrace --warning-mode=all --no-daemon GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.gradle_enterprise_access_key }} - ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.ossrh_username }} - ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.ossrh_token }} + ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }} + ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_TOKEN }} ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ossrh_signing_key }} ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.ossrh_signing_password }}