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 caa9d831f75e48cfe5e79a3d60252469a2c98cf7 Author: Alastair McFarlane <[email protected]> AuthorDate: Fri Jan 16 15:12:55 2026 +0000 Try to fix settings --- .github/workflows/distribute-maven-stg.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/distribute-maven-stg.yml b/.github/workflows/distribute-maven-stg.yml index 36dfe9d..cdf41e6 100644 --- a/.github/workflows/distribute-maven-stg.yml +++ b/.github/workflows/distribute-maven-stg.yml @@ -72,8 +72,8 @@ jobs: <servers> <server> <id>rao3</id> - <username>${env.RAO_USERNAME}</username> - <password>${env.RAO_PASSWORD}</password> + <username>${RAO_USERNAME}</username> + <password>${RAO_PASSWORD}</password> <configuration> <njord.publisher>sonatype-nx3</njord.publisher> <njord.publisher.sonatype-nx3.baseUrl>https://repository.apache.org:4443/</njord.publisher.sonatype-nx3.baseUrl> @@ -208,6 +208,7 @@ jobs: run: | echo "Publishing store: $INPUTS_DISTRIBUTION_PACKAGE-00001" mvn njord:validate -Dnjord.store=$INPUTS_DISTRIBUTION_PACKAGE-00001 -X + cat ~/.m2/settings.xml mvn njord:publish -Dnjord.store=$INPUTS_DISTRIBUTION_PACKAGE-00001 -Dnjord.target=rao3 -X mvn njord:drop -Dnjord.store=$INPUTS_DISTRIBUTION_PACKAGE-00001 -X env: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
