/minio-deploy-action

GitHub Action to deploy files with Minio client to a Minio bucket

Primary LanguageDockerfileMIT LicenseMIT

Improved Minio deploy action

Our fork of is using prebuild image stored in docker hub, instead of building an image every time when an action runs. This can save around 2 minutes per pipeline run.

Readme from fork

Run minio client in GitHub Actions to deploy files to Minio object storage.

It uses the mc mirror --overwrite command to deploy.

Usage

Put the following step in your workflow:

  - name: Minio Deploy
    uses: bratislava/minio-deploy-action@v1
    with:
      endpoint: ${{ secrets.MINIO_ENDPOINT }}
      access_key: ${{ secrets.MINIO_ACCESS_KEY }}
      secret_key: ${{ secrets.MINIO_SECRET_KEY }}
      bucket: 'mybucket'
      # Optional inputs with their defaults:
      source_dir: 'public'
      target_dir: '/'

Workflow example:

name: Deploy

on:
  pull_request:
    types: [opened, synchronize]
  push:
    branches:
      - master

jobs:
  build:
    name: Deploy
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1

      - name: Minio Deploy
        uses: bratislava/minio-deploy-action@v1
        with:
          endpoint: ${{ secrets.MINIO_ENDPOINT }}
          access_key: ${{ secrets.MINIO_ACCESS_KEY }}
          secret_key: ${{ secrets.MINIO_SECRET_KEY }}
          bucket: 'mybucket'
          source_dir: 'public'
          target_dir: '/'

Development

build an image and publish to docker:

docker build -t bratislava/minio-deploy-action:stable --platform linux/amd64 .
docker push bratislava/minio-deploy-action:stable

License

Licensed under the MIT license. See LICENSE.