-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: document build.yml & change build time
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# build.yml | ||
name: bluebuild | ||
on: | ||
schedule: | ||
- cron: "30 16 * * *" | ||
- cron: "00 17 * * *" # build at 17:00 UTC every day | ||
# (20 minutes after last ublue images start building) | ||
push: | ||
paths-ignore: | ||
paths-ignore: # don't rebuild if only documentation has changed | ||
- "**.md" | ||
pull_request: | ||
workflow_dispatch: | ||
workflow_dispatch: # allow manually triggering builds | ||
jobs: | ||
bluebuild: | ||
name: Build Custom Image | ||
|
@@ -17,13 +17,13 @@ jobs: | |
packages: write | ||
id-token: write | ||
strategy: | ||
fail-fast: false | ||
fail-fast: false # stop GH from cancelling all matrix builds if one fails | ||
matrix: | ||
recipe: | ||
# !! Add your recipes here | ||
- recipe.yml | ||
steps: | ||
- name: Build Custom Image | ||
- name: Build Custom Image # the | ||
uses: blue-build/[email protected] | ||
with: | ||
recipe: ${{ matrix.recipe }} | ||
|