Skip to content

Commit 2d1df39

Browse files
authored
Fix uploadArtifact@4 naming conflict (#29867)
1 parent 6a03669 commit 2d1df39

9 files changed

Lines changed: 11 additions & 11 deletions

.github/workflows/beam_PostCommit_Python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
uses: actions/upload-artifact@v4
102102
if: failure()
103103
with:
104-
name: Python Test Results
104+
name: Python ${{ matrix.python_version }} Test Results
105105
path: '**/pytest*.xml'
106106
- name: Publish Python Test Results
107107
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_PostCommit_Python_Arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
uses: actions/upload-artifact@v4
118118
if: failure()
119119
with:
120-
name: Python Test Results
120+
name: Python ${{ matrix.python_version }} Test Results
121121
path: '**/pytest*.xml'
122122
- name: Publish Python Test Results
123123
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_PreCommit_Python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/upload-artifact@v4
103103
if: failure()
104104
with:
105-
name: Python Test Results
105+
name: Python ${{ matrix.python_version }} Test Results
106106
path: '**/pytest*.xml'
107107
- name: Publish Python Test Results
108108
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_PreCommit_Python_Dataframes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/upload-artifact@v4
103103
if: failure()
104104
with:
105-
name: Python Test Results
105+
name: Python ${{ matrix.python_version }} Test Results
106106
path: '**/pytest*.xml'
107107
- name: Publish Python Test Results
108108
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_PreCommit_Python_Examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/upload-artifact@v4
103103
if: failure()
104104
with:
105-
name: Python Test Results
105+
name: Python ${{ matrix.python_version }} Test Results
106106
path: '**/pytest*.xml'
107107
- name: Publish Python Test Results
108108
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_PreCommit_Python_Integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
uses: actions/upload-artifact@v4
109109
if: failure()
110110
with:
111-
name: Python Test Results
111+
name: Python ${{ matrix.python_version }} Test Results
112112
path: '**/pytest*.xml'
113113
- name: Publish Python Test Results
114114
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_PreCommit_Python_Runners.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/upload-artifact@v4
103103
if: failure()
104104
with:
105-
name: Python Test Results
105+
name: Python ${{ matrix.python_version }} Test Results
106106
path: '**/pytest*.xml'
107107
- name: Publish Python Test Results
108108
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_PreCommit_Python_Transforms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/upload-artifact@v4
103103
if: failure()
104104
with:
105-
name: Python Test Results
105+
name: Python ${{ matrix.python_version }} Test Results
106106
path: '**/pytest*.xml'
107107
- name: Publish Python Test Results
108108
uses: EnricoMi/publish-unit-test-result-action@v2

.github/workflows/beam_Python_ValidatesContainer_Dataflow_ARM.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ jobs:
109109
env:
110110
MULTIARCH_TAG: ${{ steps.set_tag.outputs.TAG }}
111111
USER: github-actions
112-
- name: Archive code coverage results
112+
- name: Archive Python Test Results
113113
uses: actions/upload-artifact@v4
114-
if: always()
114+
if: failure()
115115
with:
116-
name: python-code-coverage-report
116+
name: Python ${{ matrix.python_version }} Test Results
117117
path: "**/pytest*.xml"

0 commit comments

Comments
 (0)