-
-
Notifications
You must be signed in to change notification settings - Fork 131
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
Why does it seem like it doesn't support environment variables #163
Comments
@chinghoi although it won't allow you to reference variables inside the variables array, looking at this code: It looks as though it will be pulling in the platform variables so if you just remove that one variable, it should work anyway. However, I see in some places like here: That they might get included only as a fallback, so if just removing it doesn't work perhaps there is a bug. |
It will definitely pull platform variables. I've been using this config for a long time now: #distribute_options.yaml
env:
# GOOGLE_APPLICATION_CREDENTIALS is exported by ./.keys/android/register.sh
# APPSTORE_USERNAME and APPSTORE_PASSWORD is exported by ./.keys/ios/register.sh
releases:
...
# register.sh
export APPSTORE_USERNAME=...
export APPSTORE_PASSWORD=... The reason for this somewhat roundabout setup is that tl;dr: It will use your platform env variables. Only use |
Yep, that's how I read it as well. Looking at the problem report the issue would be that
|
I don't know what else needs to be configured
In terminal
$PGYER_API_KEY
is effective, likebut
The text was updated successfully, but these errors were encountered: