File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 with :
2727 dotnet-version : ${{ env.DOTNET_VERSION }}
2828
29+ - name : Setup Github NuGet
30+ run : |
31+ dotnet nuget add source \
32+ --username ${{ github.actor }} \
33+ --password ${{ secrets.GITHUB_TOKEN }} \
34+ --store-password-in-clear-text \
35+ --name github "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
36+
2937 - name : Restore dependencies
3038 run : dotnet restore ${{ env.PROJECT }}
3139
Original file line number Diff line number Diff line change 7373 git tag "$NEW_VERSION"
7474 git push origin "$NEW_VERSION"
7575
76+ - name : Setup Github NuGet
77+ run : |
78+ dotnet nuget add source \
79+ --username ${{ github.actor }} \
80+ --password ${{ secrets.GITHUB_TOKEN }} \
81+ --store-password-in-clear-text \
82+ --name github "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
83+
7684 - name : Build
7785 run : dotnet publish ${{ env.PROJECT }} -c Release -o ${{ env.OUTPUT_PATH }}
7886
You can’t perform that action at this time.
0 commit comments