Fix broken control flow
Build Runner Image / build (push) Failing after 48s

This commit is contained in:
2026-05-20 21:16:17 +02:00
parent 400bf3b355
commit ba60ee1f77
+2 -2
View File
@@ -10,7 +10,7 @@ jobs:
- name: Install tools - name: Install tools
run: | run: |
set -ex set -ex
dnf install -y git buildah 2>&1 dnf install -y --quiet git buildah 2>&1
- name: Set registry host - name: Set registry host
run: | run: |
@@ -31,5 +31,5 @@ jobs:
- name: Push image - name: Push image
run: | run: |
set -ex 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 buildah push ${{ env.REGISTRY_HOST }}/${{ gitea.repository }}:latest 2>&1