Skip to content

Commit 52cbd61

Browse files
committed
ci: collect build output libs
1 parent aad76fb commit 52cbd61

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,17 @@ jobs:
2020
shell: pwsh
2121
run: |
2222
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

Comments
 (0)