mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-19 08:48:08 +07:00
30 lines
684 B
YAML
30 lines
684 B
YAML
# _
|
|
# __| | __ _ ___
|
|
# / _` |/ _` |/ _ \
|
|
# | (_| | (_| | __/
|
|
# \__,_|\__,_|\___|
|
|
#
|
|
# 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 (Stable)
|
|
|
|
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
|
|
secrets: inherit
|
|
|
|
build:
|
|
uses: daeuniverse/dae/.github/workflows/seed-build.yml@main
|