Skip to content

Commit

Permalink
fix: PublishTestResults workflow step version bump ( Fixes #97 )
Browse files Browse the repository at this point in the history
Switching to @main instead of a pinned version
  • Loading branch information
James Brundage committed Feb 19, 2025
1 parent 6ace3f1 commit 70a4504
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/BuildWebSocket.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
}
} @Parameters
- name: PublishTestResults
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: PesterResults
path: '**.TestResults.xml'
Expand Down
10 changes: 10 additions & 0 deletions Build/GitHub/Steps/PublishTestResults.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@{
name = 'PublishTestResults'
uses = 'actions/upload-artifact@main'
with = @{
name = 'PesterResults'
path = '**.TestResults.xml'
}
if = '${{always()}}'
}

0 comments on commit 70a4504

Please sign in to comment.