Skip to content

Build All

Build All #657

Workflow file for this run

name: Build All
on:
pull_request:
merge_group:
schedule:
- cron: '0 7 * * *' # 7 am everyday
workflow_dispatch:
jobs:
# build oci container image
job-build-system:
permissions:
contents: write
packages: write
id-token: write
uses: ./.github/workflows/build-system.yml
secrets: inherit
# remove old images
job-clean-images:
needs: job-build-system
uses: ./.github/workflows/cleanup.yml
secrets: inherit