Skip to content

Commit

Permalink
Get native builds in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchLeaders committed Jan 14, 2024
1 parent 592f18e commit cedd394
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Yaz0-${{ matrix.config.os }}
name: ${{ matrix.config.lib }}
path: ./native/build/${{ matrix.config.lib }}

# Deploy to NuGet
Expand All @@ -66,6 +66,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Get Native Builds
uses: actions/download-artifact@v4
with:
path: ./native/build
pattern: Yaz0*
merge-multiple: true

- name: Check
run: ls -R

- name: Install .NET
uses: actions/setup-dotnet@v1
with:
Expand Down

0 comments on commit cedd394

Please sign in to comment.