From 84098a396e2f7b85e1c4501212515ec7a4162507 Mon Sep 17 00:00:00 2001 From: Francisco Prieto Date: Thu, 3 Jul 2025 10:56:43 -0300 Subject: [PATCH 1/2] Update pre-release-workflow.yml Use correct upload artifacts workflow --- .github/workflows/pre-release-workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-release-workflow.yml b/.github/workflows/pre-release-workflow.yml index 41ebb32397..26022d1ee1 100644 --- a/.github/workflows/pre-release-workflow.yml +++ b/.github/workflows/pre-release-workflow.yml @@ -31,11 +31,11 @@ jobs: next_version: ${{ inputs.next_version }} upload-artifacts-to-sonatype: - name: Upload RC artifacts to Sonatype + name: Upload RC artifacts to Maven Central permissions: contents: write needs: create-release-branch - uses: ./.github/workflows/upload-artifacts-to-sonatype.yml + uses: ./.github/workflows/upload-artifacts-to-maven-central.yml secrets: inherit with: rc_version: ${{ inputs.rc_version }} From 0e72ae337829d6d27cfc0786a7c6f1033694f99d Mon Sep 17 00:00:00 2001 From: Francisco Prieto Date: Thu, 3 Jul 2025 11:29:13 -0300 Subject: [PATCH 2/2] Update pre-release-workflow.yml Remove inherit secrets --- .github/workflows/pre-release-workflow.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/pre-release-workflow.yml b/.github/workflows/pre-release-workflow.yml index 26022d1ee1..f54fff4fc8 100644 --- a/.github/workflows/pre-release-workflow.yml +++ b/.github/workflows/pre-release-workflow.yml @@ -16,7 +16,6 @@ jobs: permissions: contents: write uses: ./.github/workflows/create-release-branch.yml - secrets: inherit with: rc_version: ${{ inputs.rc_version }} @@ -26,7 +25,6 @@ jobs: contents: write pull-requests: write uses: ./.github/workflows/bump-snapshot-version.yml - secrets: inherit with: next_version: ${{ inputs.next_version }} @@ -36,6 +34,5 @@ jobs: contents: write needs: create-release-branch uses: ./.github/workflows/upload-artifacts-to-maven-central.yml - secrets: inherit with: rc_version: ${{ inputs.rc_version }}