From d2dbf4ac423bc2ca9ca659dc5631bf44660c9794 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Tue, 19 May 2026 16:34:20 +0200 Subject: [PATCH] =?UTF-8?q?fixup!=20=F0=9F=94=A7(compose)=20replace=20mini?= =?UTF-8?q?o=20by=20rustfs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/impress.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/impress.yml b/.github/workflows/impress.yml index 1d70c8874..84a39f6bf 100644 --- a/.github/workflows/impress.yml +++ b/.github/workflows/impress.yml @@ -189,11 +189,12 @@ jobs: - name: Configure Rustfs run: | - docker run --rm minio/mc sh -c \ - "mc alias set impress http://localhost:9000 impress password && \ - mc alias ls && \ - mc mb impress/impress-media-storage && \ - mc version enable impress/impress-media-storage" + curl --progress-bar -L https://dl.min.io/aistor/mc/release/linux-amd64/mc -o /tmp/mc + chmod +x /tmp/mc + /tmp/mc alias set impress http://localhost:9000 impress password + /tmp/mc alias ls + /tmp/mc mb impress/impress-media-storage + /tmp/mc version enable impress/impress-media-storage - name: Set up Python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6