From 266ac83dee1690d0a4da2d244ff4bd37b6d71657 Mon Sep 17 00:00:00 2001 From: Lovell Felix Date: Tue, 22 Dec 2020 23:20:23 -0600 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9b67321..ff200ae 100644 --- a/README.md +++ b/README.md @@ -10,15 +10,15 @@ Put the following step in your workflow: ```yml - name: Minio Deploy -uses: hkdobrev/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: '/' + uses: lovellfelix/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: @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@v1 - name: Minio Deploy - uses: hkdobrev/minio-deploy-action@v1 + uses: lovellfelix/minio-deploy-action@v1 with: endpoint: ${{ secrets.MINIO_ENDPOINT }} access_key: ${{ secrets.MINIO_ACCESS_KEY }}