generated from ublue-os/image-template
-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (38 loc) · 899 Bytes
/
build-server.yml
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
name: bOS Build Server
on:
pull_request:
branches:
- main
paths-ignore:
- "**.md"
push:
branches:
- main
paths-ignore:
- "**.md"
schedule:
- cron: "11 6 * * 0" # 6:31 UTC Sunday
- cron: "11 6 * * 1,2,3,4,5,6" # 6:31 UTC Monday-Saturday
workflow_call:
workflow_dispatch:
permissions:
contents: read
packages: write
id-token: write
jobs:
build-server-stable:
name: Server Stable
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
with:
images: '["ucore-minimal", "ucore", "ucore-hci"]'
streams: '["stable"]'
flavors: '["main", "nvidia"]'
build-server-testing:
name: Server Testing
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
with:
images: '["ucore-minimal", "ucore", "ucore-hci"]'
streams: '["testing"]'
flavors: '["main", "nvidia"]'