-
Notifications
You must be signed in to change notification settings - Fork 200
42 lines (37 loc) · 1.05 KB
/
daily-build.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
41
42
# _
# __| | __ _ ___
# / _` |/ _` |/ _ \
# | (_| | (_| | __/
# \__,_|\__,_|\___|
#
# Copyright (C) 2023 @daeuniverse <https://github.com/daeuniverse>
#
# This is a open-source software, liscensed under the AGPL-3.0 License.
# See /License for more information.
name: Daily Build (Main)
on:
schedule:
# At (UTC+8 0:00 | UTC+0 16:00) every day
- cron: "0 16 * * *"
jobs:
pre-actions:
uses: daeuniverse/ci-seed-jobs/.github/workflows/pre-actions.yml@master
with:
repository: ${{ github.repository }}
ref: ${{ github.sha }}
fetch-depth: 0
check-runs: '["build", "daily-build-passed"]'
secrets: inherit
build:
uses: daeuniverse/dae/.github/workflows/seed-build.yml@main
with:
ref: ${{ github.sha }}
build-type: daily-build
post-actions:
if: always()
needs: [build]
uses: daeuniverse/ci-seed-jobs/.github/workflows/dae-post-actions.yml@master
with:
check-run-id: "dae-bot[bot]/daily-build-passed"
check-run-conclusion: ${{ needs.build.result }}
secrets: inherit