From 42bcd0adf187ea2015f878381e1d3274182bf385 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Tue, 21 Nov 2023 20:46:36 +0100 Subject: [PATCH] fix(cicd): remove if statements --- .gitea/workflows/build.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 27d1eb0..738a805 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -25,7 +25,6 @@ jobs: shell: bash - name: Remove temporary files - if: steps.check-existing.conclusion == 'success' id: remove-temp run: | echo ${{ steps.extract-version.outputs.docker_tag }} @@ -33,30 +32,25 @@ jobs: shell: bash - name: Install Docker - if: steps.check-existing.conclusion == 'success' run: | apt-get update apt-get install docker.io -y - name: Login to DockerHub - if: steps.check-existing.conclusion == 'success' uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Set up QEMU - if: steps.check-existing.conclusion == 'success' uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx - if: steps.check-existing.conclusion == 'success' uses: docker/setup-buildx-action@v1 with: # driver-opts: network=host platforms: linux/amd64,linux/arm64 - name: Build and push image - if: steps.check-existing.conclusion == 'success' uses: docker/build-push-action@v2 with: push: true @@ -64,11 +58,3 @@ jobs: platforms: linux/amd64,linux/arm64 context: . file: ./Dockerfile - - - name: Image already built - id: image-built - if: steps.check-existing.conclusion == 'failure' - run: | - echo "Image was already built and uploaded" - exit 0 - shell: bash