Skip to content

add github actions to build containers #3

add github actions to build containers

add github actions to build containers #3

name: build_containers
on:
push:
branches: [ master ]
schedule:
- cron: "0 3 * * 1" # every monday at a 3am
permissions:
contents: read
packages: write
jobs:
build_container:
strategy:
fail-fast: false
matrix:
container:
- base-bullseye
uses: ./.github/workflows/build_single_container.yml
with:
container: "${{ matrix.container }}"
secrets: inherit