File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 148148 if printf ' %s\n' " ${dockerKeys[@]} " | grep -q -P " ^${key} \$ " ; then
149149 echo " Skipping $line "
150150 else
151- echo " Adding $line "
152151 echo " $line " >> DOCKER_ENV
153152 fi
154153done <<< $( env )
155154
156- echo " Output of DOCKER_ENV:"
157- cat ./DOCKER_ENV
158-
159- exit
160-
161155docker run --rm \
162156 --volume " ${github_action_path} /composer.phar" :/usr/local/bin/composer \
163157 --volume ~ /.gitconfig:/root/.gitconfig \
164158 --volume ~ /.ssh:/root/.ssh \
165159 --volume " ${GITHUB_WORKSPACE} " :/app \
166160 --volume " /tmp/composer-cache" :/tmp/composer-cache \
167161 --workdir /app \
168- --env-file <( env | cut -f1 -d= ) \
162+ --env-file ./DOCKER_ENV \
169163 ${docker_tag} ${command_string}
170164
171165echo " ::set-output name=full_command::${command_string} "
You can’t perform that action at this time.
0 commit comments