We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4a38c8 commit c724f55Copy full SHA for c724f55
1 file changed
.github/workflows/CI.yaml
@@ -27,15 +27,16 @@ jobs:
27
shell: powershell
28
run: |
29
.\build.ps1 -Task Test -Bootstrap -ErrorAction Stop
30
- "ModulePath=$($env:BHBuildOutput)" | Add-Content "$($env:GITHUB_OUTPUT)"
+ "ModulePath=$(Split-Path $env:BHBuildOutput -Parent)" | Add-Content "$($env:GITHUB_OUTPUT)"
31
+
32
+ - uses: actions/upload-artifact@v4
33
+ with:
34
+ name: MilestoneSystems.PowerShell.MediaDB
35
+ path: ${{ steps.build.outputs.ModulePath }}
36
37
- name: Publish Windows Test Results
38
+ if: always()
39
uses: EnricoMi/publish-unit-test-result-action/windows@v2
40
with:
41
files: |
42
tests/out/*.xml
-
- - uses: actions/upload-artifact@v4
- with:
- name: MilestoneSystems.PowerShell.MediaDB
- path: ${{ steps.build.outputs.ModulePath }}
0 commit comments