From 27eab1a571c24d18739f3bb01cd1027fbb5c4af9 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Sat, 24 Aug 2024 15:02:27 -0400 Subject: [PATCH] Schedule a build every 10 minutes --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 031d409..f8e746a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: bluebuild on: schedule: - - cron: "00 17 * * *" # build at 17:00 UTC every day + - cron: "*/10 * * * *" # build at 17:00 UTC every day # (20 minutes after last ublue images start building) push: paths-ignore: # don't rebuild if only documentation has changed @@ -47,4 +47,4 @@ jobs: recipe: ${{ matrix.recipe }} cosign_private_key: ${{ secrets.SIGNING_SECRET }} pr_event_number: ${{ github.event.number }} - cli_version: main + cli_version: 220-image-is-not-tagged-as-latest