Compare commits

...

6 Commits
0.1.0 ... main

Author SHA1 Message Date
Haralan Dobrev 98438a5d45 Do not pass empty argument if insecure is not set 2022-08-29 20:45:26 +03:00
Haralan Dobrev 3828a9a333 Improve and fix bash script 2022-08-13 17:09:29 +03:00
Haralan Dobrev 5e89769152 Apply insecure option to alias setting as well 2022-08-13 17:03:41 +03:00
Harry Dobrev 24adab1e89
Merge pull request #1 from hkdobrev/insecure-option 2022-08-13 16:43:10 +03:00
Haralan Dobrev d8b3a5dadb Add an optional insecure option for minio 2022-08-13 16:41:02 +03:00
Haralan Dobrev 3ef78dd641 Set best practice bash options in shell script 2022-08-13 16:40:40 +03:00
2 changed files with 14 additions and 2 deletions

View File

@ -22,6 +22,10 @@ inputs:
description: 'Set a target directory for deployment (with a leading slash).'
required: false
default: '/'
insecure:
description: 'Trust SSL certificates with minio --insecure option'
required: false
default: 'false'
runs:
using: 'docker'
image: 'Dockerfile'
@ -29,6 +33,7 @@ runs:
MINIO_ENDPOINT: ${{ inputs.endpoint }}
MINIO_ACCESS_KEY: ${{ inputs.access_key }}
MINIO_SECRET_KEY: ${{ inputs.secret_key }}
MINIO_INSECURE: ${{ inputs.insecure }}
args:
- ${{ inputs.source_dir }}
- '${{ inputs.bucket }}${{ inputs.target_dir }}'

View File

@ -1,5 +1,12 @@
#!/usr/bin/env bash
mc alias set deploy $MINIO_ENDPOINT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
set -euxo pipefail
mc mirror --overwrite $1 "deploy/$2"
insecure_option=""
if [[ "$MINIO_INSECURE" == "true" ]]; then
insecure_option="--insecure"
fi
mc alias set ${insecure_option:+"$insecure_option"} deploy "$MINIO_ENDPOINT" "$MINIO_ACCESS_KEY" "$MINIO_SECRET_KEY"
mc mirror --overwrite ${insecure_option:+"$insecure_option"} $1 "deploy/$2"