forked from quay/quay-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 1.91 KB
/
build-schedule.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
name: Build and Publish Images (scheduled)
on:
schedule:
- cron: '0 3 * * *' # run before e2e-nightly to ensure a fresh operator build
jobs:
trigger-39-build:
name: "Build and publish 3.9"
runs-on: ubuntu-latest
env:
BRANCH: redhat-3.9
steps:
- uses: convictional/[email protected]
with:
owner: ${{ github.repository_owner }}
repo: 'quay-operator'
# see https://docs.github.com/en/actions/security-guides/automatic-token-authentication
github_token: ${{ secrets.PAT }}
workflow_file_name: build-and-publish.yaml
ref: ${{ env.BRANCH }}
wait_interval: 30
inputs: |
{
"branch": "${{ env.BRANCH }}"
}
trigger-37-build:
name: "Build and publish 3.7"
runs-on: ubuntu-latest
env:
BRANCH: redhat-3.7
steps:
- uses: convictional/[email protected]
with:
owner: ${{ github.repository_owner }}
repo: 'quay-operator'
# see https://docs.github.com/en/actions/security-guides/automatic-token-authentication
github_token: ${{ secrets.PAT }}
workflow_file_name: build-and-publish.yaml
ref: ${{ env.BRANCH }}
wait_interval: 30
inputs: |
{
"branch": "${{ env.BRANCH }}"
}
trigger-38-build:
name: "Build and publish 3.8"
runs-on: ubuntu-latest
env:
BRANCH: redhat-3.8
steps:
- uses: convictional/[email protected]
with:
owner: ${{ github.repository_owner }}
repo: 'quay-operator'
# see https://docs.github.com/en/actions/security-guides/automatic-token-authentication
github_token: ${{ secrets.PAT }}
workflow_file_name: build-and-publish.yaml
ref: ${{ env.BRANCH }}
wait_interval: 30
inputs: |
{
"branch": "${{ env.BRANCH }}"
}