Skip to content

Commit 4eda0e3

Browse files
committed
chore(sharppipeactions)#: Download soundpipe library as pre-requisite for nuget package
1 parent 54b2ace commit 4eda0e3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/build.yml

+10
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,20 @@ jobs:
1717
runs-on: windows-latest
1818
steps:
1919
- uses: actions/checkout@v4
20+
2021
- name: Setup .NET
2122
uses: actions/setup-dotnet@v3
2223
with:
2324
dotnet-version: 8.0.x
25+
26+
- name: Download soundpipe native library
27+
uses: actions/download-artifact@v4
28+
with:
29+
name: SoundPipe-Windows-Linux
30+
31+
- name: Unzip soundpipe lib
32+
run: Expand-Archive .\SoundPipe-Windows-Linux.zip -DestinationPath .
33+
2434
- name: Build
2535
working-directory: ./SharpPipe
2636
run: dotnet pack -c Release

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ bld/
3636
[Oo]bj/
3737
[Ll]og/
3838
[Ll]ogs/
39-
[Rr]untimes/
4039

4140
# Visual Studio 2015/2017 cache/options directory
4241
.vs/

0 commit comments

Comments
 (0)