Skip to content

Commit 1589912

Browse files
author
James Brundage
committed
fix: Fixing PublishTestResults step
1 parent b639115 commit 1589912

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/build-obs-powershell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
}
182182
} @Parameters
183183
- name: PublishTestResults
184-
uses: actions/upload-artifact@v3
184+
uses: actions/upload-artifact@main
185185
with:
186186
name: PesterResults
187187
path: '**.TestResults.xml'
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@{
2+
name = 'PublishTestResults'
3+
uses = 'actions/upload-artifact@main'
4+
with = @{
5+
name = 'PesterResults'
6+
path = '**.TestResults.xml'
7+
}
8+
if = '${{always()}}'
9+
}
10+

0 commit comments

Comments
 (0)