From ba60ee1f771b453cebd4b1cfac78709b9e26bbff Mon Sep 17 00:00:00 2001 From: Thayol Date: Wed, 20 May 2026 21:16:17 +0200 Subject: [PATCH] Fix broken control flow --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index c8c6837..b62d9f0 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,7 +10,7 @@ jobs: - name: Install tools run: | set -ex - dnf install -y git buildah 2>&1 + dnf install -y --quiet git buildah 2>&1 - name: Set registry host run: | @@ -31,5 +31,5 @@ jobs: - name: Push image run: | set -ex - buildah login -u ${{ gitea.actor }} -p ${{ secrets.GITEA_TOKEN }} ${{ env.server_url }} 2>&1 + buildah login -u ${{ gitea.actor }} -p ${{ secrets.GITEA_TOKEN }} ${{ env.REGISTRY_HOST }} 2>&1 buildah push ${{ env.REGISTRY_HOST }}/${{ gitea.repository }}:latest 2>&1