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 1b6a41a8e158698f49057a7fc8470f6b90b4e7ae Author: Alastair McFarlane <[email protected]> AuthorDate: Fri Jan 16 14:48:35 2026 +0000 Assume the store name since listing and searching doesn't work --- .github/workflows/distribute-maven-stg.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/distribute-maven-stg.yml b/.github/workflows/distribute-maven-stg.yml index 316d238..36dfe9d 100644 --- a/.github/workflows/distribute-maven-stg.yml +++ b/.github/workflows/distribute-maven-stg.yml @@ -206,12 +206,10 @@ jobs: - name: Get store ID and publish working-directory: ./stg run: | - mvn njord:list | grep -oP '$INPUTS_DISTRIBUTION_PACKAGE-\d+' | tail -1 - STORE_ID=$(mvn njord:list | grep -oP '$INPUTS_DISTRIBUTION_PACKAGE-\d+' | tail -1) - echo "Publishing store: $STORE_ID" - mvn njord:validate -Dnjord.store=$STORE_ID -X - mvn njord:publish -Dnjord.store=$STORE_ID -Dnjord.target=rao3 -X - mvn njord:drop -Dnjord.store=$STORE_ID -X + echo "Publishing store: $INPUTS_DISTRIBUTION_PACKAGE-00001" + mvn njord:validate -Dnjord.store=$INPUTS_DISTRIBUTION_PACKAGE-00001 -X + mvn njord:publish -Dnjord.store=$INPUTS_DISTRIBUTION_PACKAGE-00001 -Dnjord.target=rao3 -X + mvn njord:drop -Dnjord.store=$INPUTS_DISTRIBUTION_PACKAGE-00001 -X env: INPUTS_DISTRIBUTION_PACKAGE: ${{ inputs.distribution-package }} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
