This GitHub Action sets up MinIO instance.
Docker images source minio/minio.
See action.yml
Basic:
- name: Start UP MinIO
uses: infleet/[email protected]
with:
port: "9000"
version: "latest"
username: "minio"
password: "minio"
Now you should be able to connect to MinIO
(S3 api) running at localhost:9000
Name | Default | Required? | Description |
---|---|---|---|
version |
latest |
[ ] | Version of MinIO |
port |
9000 |
[ ] | Port to forward the access to MinIO, S3 API like |
username |
[x] | The username used to authenticate to S3 api, common used as AWS_ACCESS_KEY_ID |
|
password |
[x] | The password used to authenticate to S3 api, common used as AWS_SECRET_ACCESS_KEY |