These are two quick changes for the nightly build! I had set the github username to be CIRCLE_USERNAME, one of the default envars thinking that it would override the default (empty) given the trigger, however this is not the case - the trigger seems to unset it:
In the above, the Github email should be set to the username associated with the bot pushing (it's empty). To fix this, I've changed the envar to CIRCLECI_USERNAME. I also realized that we don't need to preview built for the automated deployment (less time / use of circle resources) so I added a check for the variable there.
These are two quick changes for the nightly build! I had set the github username to be
CIRCLE_USERNAME
, one of the default envars thinking that it would override the default (empty) given the trigger, however this is not the case - the trigger seems to unset it:In the above, the Github email should be set to the username associated with the bot pushing (it's empty). To fix this, I've changed the envar to
CIRCLECI_USERNAME
. I also realized that we don't need to preview built for the automated deployment (less time / use of circle resources) so I added a check for the variable there.Signed-off-by: Vanessa Sochat vsochat@stanford.edu