Skip to content

Commit

Permalink
ci(build): fix broken build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis authored Dec 6, 2023
1 parent f8b6815 commit b133bbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
with:
dotnet-version: '7.0.x'
- name: 'Build'
run: 'dotnet pack -c Release -o ./__publish/ -v detailed ZenKit'
run: 'dotnet build ZenKit -c Release -o __build && dotnet pack -c Release -o ./__publish/ -v detailed ZenKit'
- name: 'Publish'
uses: 'actions/upload-artifact@v3'
with:
name: 'NuGet Package'
path: '__publish'
- name: 'Copy Artifacts'
run: 'mkdir Artifacts && mv ZenKit/runtimes Artifacts/ && cp ZenKit/bin/**/*.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 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'
- name: 'Publish'
uses: 'actions/upload-artifact@v3'
with:
Expand Down

0 comments on commit b133bbf

Please sign in to comment.