Skip to content

Commit

Permalink
CI: NuGet caching fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ResearchDaniel committed May 5, 2022
1 parent c02f1ef commit b38bbd9
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/visualneuro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,16 @@ jobs:
- name: 'Setup NuGet Credentials'
shell: bash
run: >
${{ matrix.mono }} `vcpkg fetch nuget | tail -n 1`
sources add
${{ matrix.mono }} `vcpkg fetch nuget | tail -n 1` \
sources add \
-source "https://nuget.pkg.github.com/visualneuro/index.json" \
-storepasswordincleartext \
-name "GitHub" \
-username "visualneuro" \
-password "${{ secrets.GITHUB_TOKEN }}"
${{ matrix.mono }} `vcpkg fetch nuget | tail -n 1` \
setapikey "${{ secrets.GITHUB_TOKEN }}" \
-source "https://nuget.pkg.github.com/visualneuro/index.json"
-storepasswordincleartext
-name "GitHub"
-username "visualneuro"
-password "${{ secrets.GITHUB_TOKEN }}"
- name: Apt Install, switch to gcc-11
shell: bash
Expand Down

0 comments on commit b38bbd9

Please sign in to comment.