This is an automated email from the ASF dual-hosted git repository. arm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tooling-actions.git
commit 0cce9f3813dbd31d771e1504adc1ca4ec795e32e Author: Alastair McFarlane <[email protected]> AuthorDate: Wed Jan 21 11:46:56 2026 +0000 Pull correct secrets into env and fix staging arg --- .github/workflows/distribute-maven.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/distribute-maven.yml b/.github/workflows/distribute-maven.yml index 64c7974..1c486cc 100644 --- a/.github/workflows/distribute-maven.yml +++ b/.github/workflows/distribute-maven.yml @@ -57,8 +57,8 @@ jobs: SSH_PORT: 2222 WORKFLOW: distribute-maven.yml NJORD_STORE: njord-deployer - RAO_USERNAME: ${{ secrets.RAO_USERNAME }} - RAO_PASSWORD: ${{ secrets.RAO_PASSWORD }} + CENTRAL_USERNAME: ${{ secrets.CENTRAL_USERNAME }} + CENTRAL_PASSWORD: ${{ secrets.CENTRAL_PASSWORD }} TAG_NAME: "${{ inputs.distribution-owner-namespace }}-${{ inputs.distribution-package }}-${{ inputs.distribution-version }}" steps: @@ -314,7 +314,7 @@ jobs: --arg distribution_package "$INPUTS_DISTRIBUTION_PACKAGE" \ --arg distribution_version "$INPUTS_DISTRIBUTION_VERSION" \ --argjson details "$DETAILS_JSON" \ - '{publisher:$publisher, jwt:$jwt, asf_uid:$uid, project:$project, version:$version, phase:$phase, platform:$platform, distribution_owner_namespace:$distribution_owner_namespace, distribution_package:$distribution_package, distribution_version:$distribution_version, staging:true, details:$details}' | + '{publisher:$publisher, jwt:$jwt, asf_uid:$uid, project:$project, version:$version, phase:$phase, platform:$platform, distribution_owner_namespace:$distribution_owner_namespace, distribution_package:$distribution_package, distribution_version:$distribution_version, staging:false, details:$details}' | curl -sS --fail-with-body -X POST -H 'Content-Type: application/json' -d @- \ "https://${ATR_HOST}/api/distribute/record_from_workflow" env: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
