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-asf-example.git
The following commit(s) were added to refs/heads/main by this push:
new 3aff51a Add distribute-test workflow for ATR distribution
3aff51a is described below
commit 3aff51af6b0c9115232ef7eac67a7d0e4be5b89d
Author: Alastair McFarlane <[email protected]>
AuthorDate: Wed Jan 7 17:49:19 2026 +0000
Add distribute-test workflow for ATR distribution
---
.github/workflows/distribute-test.yml | 53 +++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/.github/workflows/distribute-test.yml
b/.github/workflows/distribute-test.yml
new file mode 100644
index 0000000..1bd2d1b
--- /dev/null
+++ b/.github/workflows/distribute-test.yml
@@ -0,0 +1,53 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+name: Distribute from ATR
+run-name: "${{ inputs.atr-id }}"
+
+on:
+ workflow_dispatch:
+ inputs:
+ atr-id:
+ description: 'Run ID (from ATR)'
+ required: true
+ platform:
+ description: 'Distribution platform'
+ required: true
+ distribution-package:
+ description: 'Package/project name in ATR'
+ required: true
+ version:
+ description: 'Version in ATR to pull files from'
+ required: true
+ distribution-version:
+ description: 'Distribution version'
+ required: true
+
+jobs:
+ upload:
+ permissions:
+ id-token: write
+ contents: read
+ runs-on: ubuntu-latest
+ steps:
+ - name: Distribute from ATR
+ uses:
apache/tooling-actions/atr-distribute-test@da8b238137453a21eb3e93192b8aff73e9ce68e4
+ with:
+ platform: ${{ inputs.platform }}
+ distribution-package: ${{ inputs.distribution-package }}
+ version: ${{ inputs.version }}
+ distribution-version: ${{ inputs.distribution-version }}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]