Skip to content

Commit

Permalink
sync upload-ci-reports-and-artifacts/action.yml with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
rgdoliveira committed Aug 8, 2024
1 parent c5ab95f commit d1c8cc9
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/actions/upload-ci-reports-and-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ name: "Upload CI reports and artifacts"
description: ""

inputs:
working_dir:
description: "Dir path of kie-tools"
required: false
default: "."
partition_index:
description: "Index of the partition whose artifacts are being uploaded."
required: true

runs:
using: "composite"
Expand Down Expand Up @@ -44,30 +43,30 @@ runs:
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ runner.os }}__tests-reports
name: ${{ runner.os }}_${{ inputs.partition_index }}__tests-reports
path: |
${{ runner.temp }}/tests-reports.zip
- name: "Upload end-to-end tests reports"
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ runner.os }}__end-to-end-tests-reports
name: ${{ runner.os }}_${{ inputs.partition_index }}__end-to-end-tests-reports
path: |
${{ runner.temp }}/end-to-end-tests-reports.zip
- name: "Upload end-to-end tests artifacts"
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ runner.os }}__end-to-end-tests-artifacts
name: ${{ runner.os }}_${{ inputs.partition_index }}__end-to-end-tests-artifacts
path: |
${{ runner.temp }}/end-to-end-tests-artifacts.zip
- name: "Upload build artifacts"
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ runner.os }}__build-artifacts
name: ${{ runner.os }}_${{ inputs.partition_index }}__build-artifacts
path: |
${{ runner.temp }}/build-artifacts.zip

0 comments on commit d1c8cc9

Please sign in to comment.