Scheduled - Build & publish images #8998
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Scheduled - Build & publish images | |
concurrency: | |
group: container-release | |
cancel-in-progress: false | |
on: | |
workflow_dispatch: | |
inputs: | |
appsToBuild: | |
description: App(s) to build | |
required: false | |
type: string | |
default: all | |
channelsToBuild: | |
description: Channels of the apps to build | |
required: false | |
type: string | |
default: "" | |
force: | |
description: Force rebuild | |
type: boolean | |
default: false | |
required: true | |
schedule: | |
- cron: "0 * * * *" | |
jobs: | |
build-images: | |
name: Build Images | |
uses: ./.github/workflows/builder.yaml | |
secrets: inherit | |
permissions: | |
contents: read | |
packages: write | |
with: | |
appsToBuild: ${{ inputs.appsToBuild }} | |
channelsToBuild: ${{ inputs.channelsToBuild }} | |
pushImages: true | |
force: ${{ inputs.force == true }} |