Skip to content

infleet/minio-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MinIO Github Action

This GitHub Action sets up MinIO instance.

Docker images source minio/minio.


Usage

See action.yml

Basic:

- name: Start UP MinIO
  uses: infleet/minio-action@v0.0.1
  with:
    port: "9000"
    version: "latest"
    username: "minio"
    password: "minio"

Now you should be able to connect to MinIO (S3 api) running at localhost:9000


Configurations

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