GitHub Action to upload files to MinIO
Go to file
Vladimir Levin 281bdfb13d Stable 2023-08-06 19:39:17 +09:00
.github/workflows Stable 2023-08-06 19:39:17 +09:00
.gitignore Upload to MinIO action 2023-08-06 16:59:43 +09:00
Dockerfile PATH changes 2023-08-06 17:34:47 +09:00
LICENSE Initial commit 2023-08-06 16:18:51 +09:00
README.md Stable 2023-08-06 19:39:17 +09:00
action.yml Update info 2023-08-06 17:14:13 +09:00
entrypoint.sh Update entrypoint 2023-08-06 17:58:00 +09:00

README.md

Yet another MinIO Upload GitHub Action

🥳Check also Yet another MinIO Download GitHub Action

Runs minio client to upload file(s) to MinIO (self-hosted as well)

Usage

  1. Upload a file
- name: Upload to MinIO
  uses: yakubique/minio-upload@v1.1
  with:
    endpoint: ${{ secrets.MINIO_ENDPOINT }}
    access_key: ${{ secrets.MINIO_ACCESS_KEY }}
    secret_key: ${{ secrets.MINIO_SECRET_KEY }}
    bucket: my_bucket_name
    source: ./my-build-1-1-0.tar.gz
    # Leading slash is required
    target: '/builds'
  1. Upload a directory
- name: Upload a directory to MinIO
  uses: yakubique/minio-upload@v1.1
  with:
    endpoint: ${{ secrets.MINIO_ENDPOINT }}
    access_key: ${{ secrets.MINIO_ACCESS_KEY }}
    secret_key: ${{ secrets.MINIO_SECRET_KEY }}
    bucket: my_bucket_name
    source: ./public
    # Leading slash is required
    target: '/my-awesome-site'
    # If you omit the `recursive` argument, action only copies objects in the top level of the specified directory.
    recursive: true
  1. Upload to the insecure MinIO instance (http-only)
- name: Upload to MinIO
  uses: yakubique/minio-upload@v1.1
  with:
    endpoint: ${{ secrets.MINIO_ENDPOINT }}
    access_key: ${{ secrets.MINIO_ACCESS_KEY }}
    secret_key: ${{ secrets.MINIO_SECRET_KEY }}
    bucket: my_bucket_name
    source: ./access-log.1970.01.01.tar.gz
    # Leading slash is required
    target: '/logs'
    # Disables TLS/SSL certificate verification. Allows TLS connectivity to servers with invalid certificates.
    insecure: true