diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0a8db4..bb1f9b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,16 +26,19 @@ jobs: - name: 'Setup NuGet Credentials' shell: 'bash' # Replace with your organization name - run: > - mono `./vcpkg/vcpkg fetch nuget | tail -n 1` - sources add - -source "https://nuget.pkg.github.com/skyrim-multiplayer/index.json" - -storepasswordincleartext - -name "GitHub" - -username "skyrim-multiplayer" - -password "${{ secrets.GITHUB_TOKEN }}" + run: | + mono `./vcpkg/vcpkg fetch nuget | tail -n 1` \ + sources add \ + -source "https://nuget.pkg.github.com/skyrim-multiplayer/index.json" \ + -storepasswordincleartext \ + -name "GitHub" \ + -username "skyrim-multiplayer" \ + -password "${{ secrets.GITHUB_TOKEN }}" + mono `./vcpkg/vcpkg fetch nuget | tail -n 1` \ + setapikey "${{ secrets.GITHUB_TOKEN }}" \ + -source "https://nuget.pkg.github.com/skyrim-multiplayer/index.json" # Omit this step if you're using manifests - name: 'vcpkg package restore' shell: 'bash' run: > - ./vcpkg/vcpkg install --debug \ No newline at end of file + ./vcpkg/vcpkg install --debug