Debug errors
Build Runner Image / build (push) Failing after 1m4s

This commit is contained in:
2026-05-20 21:13:15 +02:00
parent 758b2741ad
commit 400bf3b355
+10 -9
View File
@@ -10,25 +10,26 @@ jobs:
- name: Install tools - name: Install tools
run: | run: |
set -ex set -ex
dnf install -y git buildah dnf install -y git buildah 2>&1
- name: Set registry host
run: |
set -ex
echo "REGISTRY_HOST=$(echo ${{ gitea.server_url }} | sed 's|https\?://||')" >> "$GITEA_ENV"
- name: Checkout - name: Checkout
run: | run: |
set -ex set -ex
git clone ${{ gitea.server_url }}/${{ gitea.repository }} . git clone ${{ gitea.server_url }}/${{ gitea.repository }} .
ls -la
- name: Set registry host
run: |
set -ex
echo "REGISTRY_HOST=$(echo ${{ gitea.server_url }} | sed 's|https\?://||')" >> "$GITHUB_ENV"
- name: Build image - name: Build image
run: | run: |
set -ex set -ex
buildah bud -t ${{ env.REGISTRY_HOST }}/${{ gitea.repository }}:latest . buildah bud -t ${{ env.REGISTRY_HOST }}/${{ gitea.repository }}:latest . 2>&1
- name: Push image - name: Push image
run: | run: |
set -ex set -ex
buildah login -u ${{ gitea.actor }} -p ${{ secrets.GITEA_TOKEN }} ${{ env.server_url }} buildah login -u ${{ gitea.actor }} -p ${{ secrets.GITEA_TOKEN }} ${{ env.server_url }} 2>&1
buildah push ${{ env.REGISTRY_HOST }}/${{ gitea.repository }}:latest buildah push ${{ env.REGISTRY_HOST }}/${{ gitea.repository }}:latest 2>&1