Run local mc binary

This commit is contained in:
Haralan Dobrev 2020-12-19 01:34:41 +02:00
parent 478807ec28
commit ea4f43b65b
2 changed files with 3 additions and 4 deletions

View File

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

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
mc alias set deploy $MINIO_ENDPOINT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
./mc alias set deploy $MINIO_ENDPOINT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
mc mirror --overwrite $1 "deploy/$2"
./mc mirror --overwrite $1 "deploy/$2"