From f6491e3772032e5e42eac0add7a18a0145758e45 Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Fri, 26 Apr 2024 23:46:59 +0000 Subject: [PATCH] .gitea/workflows/action.yml aktualisiert --- .gitea/workflows/action.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index a0bc97b..50f4c01 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -9,12 +9,9 @@ jobs: build_act: runs-on: 'priviliged' steps: - - name: Debug - run: which docker - name: Install Docker run: | - rm $(which docker) - curl -fsSL https://get.docker.com | sh + rm $(which docker) && curl -fsSL https://get.docker.com | sh - name: Set up QEMU uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3' - name: Setup Buildx @@ -43,7 +40,8 @@ jobs: version: [8.1, 8.2, 8.3] steps: - name: Install Docker - run: curl -fsSL https://get.docker.com | sh -s + run: | + rm $(which docker) && curl -fsSL https://get.docker.com | sh - name: Set up QEMU uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3' - name: Setup Buildx @@ -73,7 +71,8 @@ jobs: version: [8, 17, 21] steps: - name: Install Docker - run: curl -fsSL https://get.docker.com | sh -s + run: | + rm $(which docker) && curl -fsSL https://get.docker.com | sh - name: Set up QEMU uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3' - name: Setup Buildx