We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad76fb commit 52cbd61Copy full SHA for 52cbd61
1 file changed
.github/workflows/ci.yml
@@ -20,3 +20,17 @@ jobs:
20
shell: pwsh
21
run: |
22
msbuild .\\library.sln /p:Configuration=Release /p:Platform=x64
23
+
24
+ - name: collect build output
25
+ shell: pwsh
26
+ run: |
27
+ New-Item -ItemType Directory -Force build-output | Out-Null
28
+ Get-ChildItem -Path . -Recurse -Filter *.lib | ForEach-Object {
29
+ Copy-Item -Path $_.FullName -Destination build-output -Force
30
+ }
31
32
+ - name: upload build-output
33
+ uses: actions/upload-artifact@v4
34
+ with:
35
+ name: build-output
36
+ path: build-output
0 commit comments