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


The following commit(s) were added to refs/heads/main by this push:
     new f0a3462  Fix missing SSH port
f0a3462 is described below

commit f0a3462adfaa1334f51c78805a913034ae0ad3c1
Author: Alastair McFarlane <[email protected]>
AuthorDate: Wed Jan 14 11:08:18 2026 +0000

    Fix missing SSH port
---
 .github/workflows/distribute-maven.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/distribute-maven.yml 
b/.github/workflows/distribute-maven.yml
index 9f1fa42..4689cd8 100644
--- a/.github/workflows/distribute-maven.yml
+++ b/.github/workflows/distribute-maven.yml
@@ -58,6 +58,7 @@ jobs:
     runs-on: ubuntu-latest
     env:
       ATR_HOST: release-test.apache.org
+      SSH_PORT: 2222
     steps:
       - name: Create a GitHub OIDC JWT
         id: create-github-jwt
@@ -108,7 +109,7 @@ jobs:
         shell: bash
         run: |
           set -euxo pipefail
-          if ! [[ "${INPUTS_SSH_PORT}" =~ ^[0-9]+$ ]]
+          if ! [[ "${SSH_PORT}" =~ ^[0-9]+$ ]]
           then
             echo "::error::ssh-port must be an integer"
             exit 1


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to