Files
pastabble/.gitea/workflows/ci.yaml
Job79 030dc86adc
Some checks failed
Build container / build (push) Failing after 16s
ci: install qemu-user-static before building
2025-06-03 16:54:37 +02:00

30 lines
844 B
YAML

name: Build container
on:
push:
jobs:
build:
runs-on: container-builder
steps:
- uses: actions/checkout@v4
- name: Install qemu dependency
run: |
apt-get update
apt-get install -y qemu-user-static
- 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 }}