From 478807ec28a930575c24f37dd50fc1af11847644 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Sat, 19 Dec 2020 01:00:29 +0200 Subject: [PATCH] Add downloaded mc binary to PATH --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f169d6f..68cda16 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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