name: Build container on: push: schedule: - cron: '0 16 * * FRI' jobs: build: runs-on: rocky-minimal 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 extra-args: --compression-format zstd:chunked registry: git.plabble.org username: ${{ secrets.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_TOKEN }}