Run local mc binary

main
Haralan Dobrev 4 years ago
parent 478807ec28
commit ea4f43b65b

@ -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

@ -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"

Loading…
Cancel
Save