Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Pospelove committed Aug 17, 2023
1 parent a9f73c0 commit bd0ba2b
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,19 @@ jobs:
- name: 'Setup NuGet Credentials'
shell: 'bash'
# Replace <OWNER> 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
./vcpkg/vcpkg install --debug

0 comments on commit bd0ba2b

Please sign in to comment.