From cfc4a1f4f29d938cc0eae5e69f6e28e9ac7220cf Mon Sep 17 00:00:00 2001 From: Nik Rozman Date: Thu, 24 Apr 2025 19:20:35 +0200 Subject: [PATCH] Fix MinIO client alias configuration command syntax --- .github/workflows/build_prepare.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_prepare.yaml b/.github/workflows/build_prepare.yaml index 0a9163c..2c4bd96 100644 --- a/.github/workflows/build_prepare.yaml +++ b/.github/workflows/build_prepare.yaml @@ -71,8 +71,8 @@ jobs: - name: Configure MinIO client run: | - mc alias set s3piskot https://s3.piskot.si ${{ secrets.S3_AK }} ${{ secrets.S3_SK }} - if ! ./mc alias list | grep -q "s3piskot"; then + mc alias set s3piskot https://s3.piskot.si "${{ secrets.S3_AK }}" "${{ secrets.S3_SK }}" + if ! mc alias list | grep -q "s3piskot"; then echo "Error: Failed to set S3 alias" exit 1 fi