We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5993a9b commit 375627eCopy full SHA for 375627e
1 file changed
.github/workflows/dotnet_build_release.yml
@@ -35,8 +35,11 @@ jobs:
35
- name: Pack & push to NuGet
36
if: github.event_name == 'push' && matrix.os == 'windows-latest' && matrix.arch == 'x64'
37
run: |
38
+ echo Before
39
ls .
40
dotnet pack ./RSML/RSML.csproj -c Release -o ./nupkg
41
+ echo After
42
+ ls .
43
dotnet nuget push ./nupkg/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
44
45
- name: Publish CLI archives
0 commit comments