Skip to content

Commit 417b714

Browse files
committed
Fix download-artifact v2 Upgrade
1 parent be78c1c commit 417b714

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: dotnet nuget add source https://nuget.pkg.github.com/Dotnet-Boxed/index.json --name GitHub --username RehanSaeed --password ${{secrets.GITHUB_TOKEN}}
7474
shell: pwsh
7575
- name: 'Dotnet NuGet Push'
76-
run: dotnet nuget push .\windows-latest\*.nupkg --api-key ${{ github.token }} --source GitHub --skip-duplicate
76+
run: dotnet nuget push .\*.nupkg --api-key ${{ github.token }} --source GitHub --skip-duplicate
7777
shell: pwsh
7878

7979
push-nuget:
@@ -91,7 +91,7 @@ jobs:
9191
name: 'windows-latest'
9292
- name: 'Dotnet NuGet Push'
9393
run: |
94-
Get-ChildItem .\windows-latest -Filter *.nupkg |
94+
Get-ChildItem .\ -Filter *.nupkg |
9595
Where-Object { !$_.Name.Contains('preview') } |
9696
ForEach-Object { dotnet nuget push $_ --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} }
9797
shell: pwsh

0 commit comments

Comments
 (0)