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 df48f4d2a2bd9eed569896958d2cf9f9c875d9d2 Author: Alastair McFarlane <[email protected]> AuthorDate: Tue Jan 6 17:05:21 2026 +0000 Fix failures --- .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..07feacc --- /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.id }}" + +on: + workflow_dispatch: + inputs: + id: + description: 'Test run ID' + 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@55988c3babfcd4bddf11211f7501becdd5483321 + with: + platform: ${{ inputs.platform }} + distribution-package: ${{ inputs.distribution-package }} + version: ${{ inputs.version }} + distribution-version: ${{ inputs.distribution-version }} \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
