-
-
Notifications
You must be signed in to change notification settings - Fork 33
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
Composer config for http-basic #182
Comments
I'm not sure this should be a concern of this action. Try out something like this, and let me know if it works for you: - name: "Configure Composer"
run: |
composer config http-basic.nova.laravel.com ${NOVA_USERNAME} ${NOVA_PASSWORD}
- uses: "ramsey/composer-install@v2" |
If I may, I had today with same kind of problem. I wanted to access one of my fork from another project on GitHub. After reading :
I suggest to use the In my case, I've added in my GitHub workflow :
Using https://getcomposer.org/doc/articles/authentication-for-private-packages.md#http-basic is quite the same (just adjust the json syntax and secrets used |
@ramsey Perharps a NOTE (section about authentication) in the README page will be welcome ! |
I am trying to install Laravel Nova in my CI workflow. Nova requires authentication. The easiest way which I did in the past when I manually installed Composer (without this action) was to simply run:
Can this be done with this action? Looks like maybe not at least out of the box.
The text was updated successfully, but these errors were encountered: