Add downloaded mc binary to PATH

This commit is contained in:
Haralan Dobrev 2020-12-19 01:00:29 +02:00
parent a3bec24b91
commit 478807ec28
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@ RUN apt-get update && \
RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc \
&& chmod +x mc \
&& ./mc --help
&& echo $(pwd) >> $GITHUB_PATH \
&& mc --help
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh