From 36aeb06f9b0aeed59126f5b0185f3278d6c3ac32 Mon Sep 17 00:00:00 2001 From: Luis Michaelis Date: Mon, 29 Apr 2024 16:15:14 +0200 Subject: [PATCH] ci: fixup build script --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f86ec7d..1fc365a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,14 +11,18 @@ jobs: with: dotnet-version: '7.0.x' - name: 'Build' - run: 'dotnet build ZenKit -c Release -o __build && dotnet pack -c Release -o ./__publish/ -v detailed ZenKit' + run: 'dotnet build DirectMusic -c Release -o __build && dotnet pack -c Release -o ./__publish/ -v detailed DirectMusic' - name: 'Publish' uses: 'actions/upload-artifact@v3' with: name: 'NuGet Package' path: '__publish' - name: 'Copy Artifacts' - run: 'mkdir Artifacts && mv ZenKit/runtimes Artifacts/ && cp __build/ZenKit.dll Artifacts/ && echo "Copy the native library for your OS from the `runtime` folder into the same folder `ZenKit.dll` is in." > Artifacts/README.md' + run: > + mkdir Artifacts && mv DirectMusic/runtimes Artifacts/ && + cp __build/DirectMusic.dll Artifacts/ && + cp __build/DirectMusic.pdb Artifacts/ && + echo "Copy the native library for your OS from the `runtime` folder into the same folder `DirectMusic.dll` is in." > Artifacts/README.md' - name: 'Publish' uses: 'actions/upload-artifact@v3' with: