From 974d5d8996b61c8d431e95d2bbcb0c36446fdc48 Mon Sep 17 00:00:00 2001 From: xynydev Date: Sat, 3 Feb 2024 13:06:50 +0200 Subject: [PATCH] chore: document build.yml & change build time --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ebc790..c751786 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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/github-action@v1.0.0 with: recipe: ${{ matrix.recipe }}