We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae1db6 commit 2c063c2Copy full SHA for 2c063c2
.github/workflows/build.yml
@@ -98,19 +98,21 @@ jobs:
98
99
deploy:
100
name: Deploy Package
101
- runs-on: windows-latest
102
- needs: [build, publish-github]
+ runs-on: ubuntu-latest
+ needs: [build]
103
if: github.event_name == 'release'
104
105
steps:
106
+ - name: Setup .NET
107
+ uses: actions/setup-dotnet@v4
108
+ with:
109
+ dotnet-version: 8.x
110
+
111
- name: Download packages
112
uses: actions/download-artifact@v4
113
with:
114
name: Packages
115
path: Packages
116
- - name: Setup .NET Core
- uses: actions/setup-dotnet@v4
-
117
- name: Publish NuGet Package
118
run: dotnet nuget push "Packages/*.nupkg" --skip-duplicate --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json
0 commit comments