We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b125f0 commit 16ed34fCopy full SHA for 16ed34f
.github/workflows/ci.yml
@@ -17,6 +17,10 @@ jobs:
17
uses: actions/setup-dotnet@v4
18
with:
19
dotnet-version: 8.x
20
+ - name: Remove Github nuget source that was added with nuget.config
21
+ run: dotnet nuget remove source github --configfile nuget.config
22
+ - name: Add Github nuget source
23
+ run: dotnet nuget add source https://nuget.pkg.github.com/KinNeko-De/index.json --name github --username KinNeko-De --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text --configfile nuget.config
24
- name: Restore dependencies
25
run: dotnet restore ${{ env.csharp_project }} --configfile nuget.config
26
- name: Build
0 commit comments