fix artifact upload

This commit is contained in:
Cody Robibero 2024-02-22 12:10:19 -07:00
parent 82274d66d9
commit eca148f037
2 changed files with 4 additions and 4 deletions

View File

@ -53,11 +53,11 @@ jobs:
- name: Build packages
run: |
dotnet build -c Release
dotnet build -c Release Jellyfin.Sdk -o artifacts
- name: Publish to nuget
run: |
dotnet nuget push bin/Release/*.nupkg --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
dotnet nuget push artifacts/*.nupkg --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
- name: Commit new changes to the repo
run: |

View File

@ -50,11 +50,11 @@ jobs:
- name: Build packages
run: |
dotnet build -c Release Jellyfin.Sdk
dotnet build -c Release Jellyfin.Sdk -o artifacts
- name: Publish to nuget
run: |
dotnet nuget push bin/Release/*.nupkg --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
dotnet nuget push artifacts/*.nupkg --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
- name: Commit new changes to the repo
run: |