Skip to content

Commit af1f76f

Browse files
🩹 [Patch]: Remove shell section on artifact name (#79)
## Description - Remove shell section on artifact name ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 19f4509 commit af1f76f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ runs:
6464
uses: actions/upload-artifact@v4
6565
if: ${{ inputs.TestType == 'Module' && (success() || failure()) }}
6666
with:
67-
name: ${{ runner.os }}-${{ inputs.Shell }}-Test-Report
67+
name: ${{ runner.os }}-Test-Report
6868
path: ${{ github.workspace }}/outputs/Test-Report.xml
6969

7070
- name: Upload code coverage report
7171
uses: actions/upload-artifact@v4
7272
if: ${{ inputs.TestType == 'Module' && (success() || failure()) }}
7373
with:
74-
name: ${{ runner.os }}-${{ inputs.Shell }}-CodeCoverage-Report
74+
name: ${{ runner.os }}-CodeCoverage-Report
7575
path: ${{ github.workspace }}/outputs/CodeCoverage-Report.xml

0 commit comments

Comments
 (0)