From 67b05b366105ef7a691acac00a8f30ea0be55d0b Mon Sep 17 00:00:00 2001 From: Job79 Date: Tue, 3 Jun 2025 18:38:34 +0200 Subject: [PATCH] ci: remove broken pipeline --- .gitea/workflows/ci.yaml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml deleted file mode 100644 index 723f1fb..0000000 --- a/.gitea/workflows/ci.yaml +++ /dev/null @@ -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 }}