We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caada99 commit 5fd07c1Copy full SHA for 5fd07c1
1 file changed
.github/workflows/ci-cd.yml
@@ -110,13 +110,6 @@ jobs:
110
with:
111
fetch-depth: 0 # Required for SourceLink
112
113
- - name: Setup .NET
114
- uses: actions/setup-dotnet@v4
115
- with:
116
- dotnet-version: |
117
- 8.0.x
118
- 10.0.x
119
-
120
- name: Restore dependencies
121
run: dotnet restore
122
@@ -136,4 +129,6 @@ jobs:
136
129
user: MichaConrad
137
130
138
131
- name: Push to NuGet.org
139
- run: dotnet nuget push ./artifacts/*.nupkg --api-key ${{ steps.login.outputs.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
132
+ run: |
133
+ dotnet nuget push "${{ github.workspace }}/artifacts/*.nupkg" --api-key ${{ steps.login.outputs.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
134
+ shell: pwsh
0 commit comments