Github Actions - How to ignore Filament?
I'm running Github Actions for testing, however it want's to authenticate Filament when it runs
composer i
is there a way I can avoid this within the Action or via composer somehow?6 Replies
What do you mean by "Authenticate Filament"?!
Please explain and maybe shown your
composer.json
Here's the relevent portions
Is there a way to "skip" the install of filament when in certain environments. For example, if the .env has
APP_ENV=testing
So they issue isn't Filament, but that you are requiring a Paid Plugin in composer and didn't add the auth for it.
Is there a standard / easy way to get around this? To my understanding, I can only authenticate Filament on one domain (and then localhost). But the testing is done on Github.
I don't know what the license says and whether it can be restricted to a domain. If you include the credentials in the repo or via Github secret it should work
gotcha, thanks! i'll give that a try