Skip to content

Build Base Image

Build Base Image #47

Workflow file for this run

name: "Build Base Image"
on:
workflow_call:
workflow_dispatch:
schedule:
# Build base image on 1 and 15 day every month
- cron: '0 0 1,15 * *'
jobs:
build:
uses: "./.github/workflows/docker.yml"
with:
docker_target: base
version: base
platforms: linux/arm64
dev: false
image: ${{ vars.IMAGE }}
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
REGISTRY: ${{ secrets.REGISTRY }}
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}