From bac6b3bc224eaab319c9a71164d9e9655a2c9ea2 Mon Sep 17 00:00:00 2001 From: inffy <10782843+inffy@users.noreply.github.com> Date: Tue, 12 May 2026 10:58:16 +0300 Subject: [PATCH 1/2] chore: Change cron schedule for ISO upload to monthly No need to build these every week --- .github/workflows/build-iso-stable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-iso-stable.yml b/.github/workflows/build-iso-stable.yml index 5324822..6fe9658 100644 --- a/.github/workflows/build-iso-stable.yml +++ b/.github/workflows/build-iso-stable.yml @@ -20,7 +20,7 @@ on: type: boolean default: true schedule: - - cron: "0 3 * * 3" # Push to testing bucket every week at 03:00 on Wednesdays + - cron: "0 3 5 * *" # Push to testing bucket on the 5th day of the month at 03:00 UTC jobs: build-iso-stable: name: Build Stable ISOs From d65fadbb2551d70d9984cc2f84088c2c37d4052c Mon Sep 17 00:00:00 2001 From: inffy <10782843+inffy@users.noreply.github.com> Date: Tue, 12 May 2026 11:25:50 +0300 Subject: [PATCH 2/2] change the day first of the month --- .github/workflows/build-iso-stable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-iso-stable.yml b/.github/workflows/build-iso-stable.yml index 6fe9658..66bf2b5 100644 --- a/.github/workflows/build-iso-stable.yml +++ b/.github/workflows/build-iso-stable.yml @@ -20,7 +20,7 @@ on: type: boolean default: true schedule: - - cron: "0 3 5 * *" # Push to testing bucket on the 5th day of the month at 03:00 UTC + - cron: "0 3 1 * *" # Push to testing bucket on the 1st day of the month at 03:00 UTC jobs: build-iso-stable: name: Build Stable ISOs