chore: document build.yml & change build time
This commit is contained in:
parent
5c673d50ea
commit
974d5d8996
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@ -1,13 +1,13 @@
|
|||||||
# build.yml
|
|
||||||
name: bluebuild
|
name: bluebuild
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "30 16 * * *"
|
- cron: "00 17 * * *" # build at 17:00 UTC every day
|
||||||
|
# (20 minutes after last ublue images start building)
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
paths-ignore: # don't rebuild if only documentation has changed
|
||||||
- "**.md"
|
- "**.md"
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch: # allow manually triggering builds
|
||||||
jobs:
|
jobs:
|
||||||
bluebuild:
|
bluebuild:
|
||||||
name: Build Custom Image
|
name: Build Custom Image
|
||||||
@ -17,13 +17,13 @@ jobs:
|
|||||||
packages: write
|
packages: write
|
||||||
id-token: write
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false # stop GH from cancelling all matrix builds if one fails
|
||||||
matrix:
|
matrix:
|
||||||
recipe:
|
recipe:
|
||||||
# !! Add your recipes here
|
# !! Add your recipes here
|
||||||
- recipe.yml
|
- recipe.yml
|
||||||
steps:
|
steps:
|
||||||
- name: Build Custom Image
|
- name: Build Custom Image # the
|
||||||
uses: blue-build/github-action@v1.0.0
|
uses: blue-build/github-action@v1.0.0
|
||||||
with:
|
with:
|
||||||
recipe: ${{ matrix.recipe }}
|
recipe: ${{ matrix.recipe }}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user