Skip to content

Commit

Permalink
chore: document build.yml & change build time
Browse files Browse the repository at this point in the history
  • Loading branch information
xynydev committed Feb 3, 2024
1 parent 5c673d5 commit 974d5d8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
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
Expand All @@ -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 }}
Expand Down

0 comments on commit 974d5d8

Please sign in to comment.