rebuil;d every hour

This commit is contained in:
Wesley van Tilburg 2025-03-15 11:54:13 +01:00
parent c1889392b4
commit c29f113f8b
Signed by: Misthios
SSH Key Fingerprint: SHA256:pYcdtJhH6sTnQNsuLugfUDKqWNTJWRKjHFBhEtYrxng

@ -1,6 +1,8 @@
name: Build container
on:
push:
schedule:
- cron: '* * * * *'
jobs:
build:
@ -10,14 +12,14 @@ jobs:
- name: Build
uses: redhat-actions/buildah-build@v2
with:
image: ${{ github.actor }}/${{ github.event.repository.name }}
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
tags: ${{ github.ref_name }}
containerfiles: |
./Containerfile
- name: Push
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ github.actor }}/${{ github.event.repository.name }}
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
tags: ${{ github.ref_name }}
registry: git.plabble.org
username: ${{ secrets.REGISTRY_USERNAME }}