The working_directory parameter for the run command doesn't do any expansion of env vars, so this command does not work as expected. Given the working_directory is relative to $CIRCLE_WORKING_DIRECTORY including the env var in the path is redundant. You can also see this in other steps in this command.
The
working_directory
parameter for the run command doesn't do any expansion of env vars, so this command does not work as expected. Given the working_directory is relative to$CIRCLE_WORKING_DIRECTORY
including the env var in the path is redundant. You can also see this in other steps in this command.