-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 983 Bytes
/
scheduled.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Scheduled Release
concurrency:
group: container-release
cancel-in-progress: false
on:
workflow_dispatch:
inputs:
appsToBuild:
description: App(s) to build
required: false
type: string
default: all
schedule:
- cron: "0 * * * *"
jobs:
get-changed-images:
uses: lehmanju/containers/.github/workflows/get-changed-images.yaml@main
build-images:
permissions:
contents: read
packages: write
needs: ["get-changed-images"]
if: ${{ needs.get-changed-images.outputs.addedOrModified == 'true' }}
uses: lehmanju/containers/.github/workflows/build-images.yaml@main
secrets: inherit
with:
appsToBuild: "${{ needs.get-changed-images.outputs.addedOrModifiedImages }}"
pushImages: true