Provisioning of the minio mc
client for Github Action.
This action sets up the minio target and credentials internally via the MC_HOST
environmental variable.
- name: Test on min.io play
uses: hokru/[email protected]
with:
endpoint: play.min.io
access_key: ${{secrets.accesskey}}
secret_key: ${{secrets.secretkey}}
alias: play
cmd: "mc ls play"
endpoint
: address of S3 service withouthttp*://
. Should point to the API endpoint.access_key
: access key or usernamesecret_key
: secret key or passwordalias
: The name of the S3 service. Default =minio
workdir
: working_directory supportcmd
: The full mc client command using thealias
.