Job79 0aedb01b60
All checks were successful
Build container / build (push) Successful in 3m8s
ci: disable zstd:chunked
2024-12-31 14:50:50 +01:00

27 lines
714 B
YAML

name: Build container
on:
push:
schedule:
- cron: '0 16 * * FRI'
jobs:
build:
runs-on: container-builder
steps:
- uses: actions/checkout@v4
- name: Build
uses: redhat-actions/buildah-build@v2
with:
image: ${{ github.actor }}/${{ github.event.repository.name }}
tags: latest
containerfiles: |
./Containerfile
- name: Push
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ github.actor }}/${{ github.event.repository.name }}
tags: latest
registry: git.plabble.org
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}