File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 3434 - build
3535 - build-standalone-binaries
3636 steps :
37+ - *checkout
38+ - *setup-dotnet
39+ - *setup-nuget
3740 - *download-artifacts
3841 - name : ' Create Release'
3942 run : |
Original file line number Diff line number Diff line change @@ -127,6 +127,24 @@ jobs:
127127 - build
128128 - build-standalone-binaries
129129 steps :
130+ - uses : actions/checkout@v3
131+ with :
132+ fetch-depth : ' 0'
133+
134+ - name : Setup .NET
135+ uses : actions/setup-dotnet@v3
136+ with :
137+ dotnet-version : |
138+ 3.1.x
139+ 5.0.x
140+ 6.x
141+ 7.x
142+
143+ - name : Setup NuGet
144+ run : |
145+ dotnet nuget update source github --store-password-in-clear-text --username AshleighAdams --password ${{ secrets.PERSONAL_ACCESS_TOKEN }}
146+ dotnet nuget enable source github
147+
130148 - name : Download Artifacts
131149 uses : actions/download-artifact@v2
132150
You can’t perform that action at this time.
0 commit comments