Skip to content

Commit b543a95

Browse files
authored
Merge pull request #7176 from microting/copilot/upload-mp4-artifacts
Upload Cypress mp4 artifacts unconditionally for debugging
2 parents 28fe926 + 5d01f24 commit b543a95

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/dotnet-core-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ jobs:
134134
/home/runner/work/eform-angular-frontend/eform-angular-frontend/eform-client/errorShots/*.png
135135
retention-days: 2
136136
- name: Archive video artifacts
137-
if: ${{ failure() }}
137+
if: ${{ always() }}
138138
uses: actions/upload-artifact@v4
139139
with:
140-
name: error Screenshots ${{matrix.test}}
140+
name: cypress-videos-${{matrix.test}}
141141
path: |
142142
eform-client/cypress/videos/*.mp4
143143
retention-days: 2

.github/workflows/dotnet-core-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ jobs:
133133
/home/runner/work/eform-angular-frontend/eform-angular-frontend/eform-client/errorShots/*.png
134134
retention-days: 2
135135
- name: Archive video artifacts
136-
if: ${{ failure() }}
136+
if: ${{ always() }}
137137
uses: actions/upload-artifact@v4
138138
with:
139-
name: error Screenshots ${{matrix.test}}
139+
name: cypress-videos-${{matrix.test}}
140140
path: |
141141
eform-client/cypress/videos/*.mp4
142142
retention-days: 2

0 commit comments

Comments
 (0)