ci: remove broken pipeline

This commit is contained in:
Job
2025-06-03 18:38:34 +02:00
parent 48a5212e7d
commit 67b05b3661

View File

@@ -1,28 +0,0 @@
name: Build container
on:
push:
jobs:
build:
runs-on: citadel-container-builder
steps:
- uses: actions/checkout@v4
- name: Install qemu dependency
run: |
sudo dnf install -y qemu-user-static-aarch64
- name: Build
uses: redhat-actions/buildah-build@v2
with:
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
tags: latest
archs: arm64
containerfiles: |
./Containerfile
- name: Push
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
tags: latest
registry: git.plabble.org
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}