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 85e2627 Allow insecure for testing
85e2627 is described below
commit 85e26272925a797ba694a9f45a1c301d094f815b
Author: Alastair McFarlane <[email protected]>
AuthorDate: Wed Jan 28 11:08:06 2026 +0000
Allow insecure for testing
---
.github/workflows/distribute-maven-stg.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/distribute-maven-stg.yml
b/.github/workflows/distribute-maven-stg.yml
index acf7962..9934efd 100644
--- a/.github/workflows/distribute-maven-stg.yml
+++ b/.github/workflows/distribute-maven-stg.yml
@@ -173,7 +173,7 @@ jobs:
--arg project_name "$INPUTS_PROJECT" \
--arg version "$INPUTS_VERSION" \
'{publisher:$publisher, jwt:$jwt, ssh_key:$key, asf_uid:$uid,
project_name:$project_name, phase:$phase, version:$version}' |
- curl -sS --fail-with-body -X POST -H 'Content-Type:
application/json' -d @- \
+ curl -sS --fail-with-body -k -X POST -H 'Content-Type:
application/json' -d @- \
"https://${ATR_HOST}/api/distribute/ssh/register"
env:
JWT: ${{ steps.create-github-jwt.outputs.jwt }}
@@ -193,7 +193,7 @@ jobs:
--arg run_id $RUN_ID \
--arg project_name "$INPUTS_PROJECT" \
'{publisher:$publisher, jwt:$jwt, workflow:$workflow,
run_id:$run_id, project_name:$project_name, status:"in-progress",
message:"Compiling distribution"}' |
- curl -sS --fail-with-body -X POST -H 'Content-Type:
application/json' -d @- \
+ curl -sS --fail-with-body -k -X POST -H 'Content-Type:
application/json' -d @- \
"https://${ATR_HOST}/api/distribute/task/status"
env:
JWT: ${{ steps.create-github-jwt.outputs.jwt }}
@@ -354,7 +354,7 @@ jobs:
--arg err "$([ -f .err ] && [ -s .err ] && echo "Build failed:
$(cat .err)" || echo "")" \
--arg status "failed" \
'{publisher:$publisher, jwt:$jwt, workflow:$workflow,
run_id:$run_id, project_name:$project_name, status:$status, message:$err}' |
- curl -sS --fail-with-body -X POST -H 'Content-Type:
application/json' -d @- \
+ curl -sS --fail-with-body -k -X POST -H 'Content-Type:
application/json' -d @- \
"https://${ATR_HOST}/api/distribute/task/status"
env:
JWT: ${{ steps.create-github-jwt.outputs.jwt }}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]