-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ian/cxx common action #14
base: master
Are you sure you want to change the base?
Conversation
mono `./vcpkg/vcpkg fetch nuget | tail -n 1` \ | ||
sources add \ | ||
-source "https://nuget.pkg.github.com/lifting-bits/index.json" \ | ||
-storepasswordincleartext \ | ||
-name "GitHub" \ | ||
-username "lifting-bits" \ | ||
-password "${{ inputs.gh-token }}" | ||
mono `./vcpkg/vcpkg fetch nuget | tail -n 1` \ | ||
setapikey "${{ inputs.gh-token }}" \ | ||
-source "https://nuget.pkg.github.com/lifting-bits/index.json" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very weird it's still not working... In cxx-common, we add
first and then update
... I forget if that was for a special reason, like self-hosted runners, or if the authentication is finicky
https://github.com/lifting-bits/cxx-common/blob/94533d40904afb26ac979a8c91282f89f3c81fe3/.github/workflows/vcpkg_ci_amd64.yml#L98-L111
also, I run vcpkg from the same shell as the one I authenticate in
https://github.com/lifting-bits/cxx-common/blob/94533d40904afb26ac979a8c91282f89f3c81fe3/.github/workflows/vcpkg_ci_amd64.yml#L117
actions/build-cxx-common/action.yml
Outdated
working-directory: cxx-common | ||
shell: "bash" | ||
run: > | ||
./vcpkg/vcpkg install sqlite3 cpprestsdk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
./vcpkg/vcpkg install sqlite3 cpprestsdk | |
./vcpkg/vcpkg install sqlite3 cpprestsdk --debug |
No description provided.