diff --git a/.github/workflows/build-image-beta.yml b/.github/workflows/build-image-beta.yml index 6ccee10e54b..f4747c79c08 100644 --- a/.github/workflows/build-image-beta.yml +++ b/.github/workflows/build-image-beta.yml @@ -8,8 +8,8 @@ on: paths-ignore: - "**.md" schedule: - - cron: "40 4 * * 1,2,3,4,5,6" # 4:40 UTC All But Sunday - - cron: "40 4 * * 0" # 4:40 UTC Sunday + - cron: "50 4 * * 1,2,3,4,5,6" # 4:50 UTC All But Sunday + - cron: "50 4 * * 0" # 4:50 UTC Sunday workflow_call: workflow_dispatch: diff --git a/.github/workflows/build-image-gts.yml b/.github/workflows/build-image-gts.yml index b1df7db429d..a268be8b367 100644 --- a/.github/workflows/build-image-gts.yml +++ b/.github/workflows/build-image-gts.yml @@ -7,7 +7,7 @@ on: paths-ignore: - "**.md" schedule: - - cron: "45 5 * * 0" # 5:45 UTC Weekly on Sundays + - cron: "50 5 * * 0" # 5:50 UTC Weekly on Sundays workflow_dispatch: workflow_call: diff --git a/.github/workflows/build-image-latest.yml b/.github/workflows/build-image-latest.yml index 8975976eaff..3058946e64e 100644 --- a/.github/workflows/build-image-latest.yml +++ b/.github/workflows/build-image-latest.yml @@ -8,8 +8,8 @@ on: paths-ignore: - "**.md" schedule: - - cron: "40 4 * * 1,2,3,4,5,6" # 4:40 UTC All But Sunday - - cron: "40 4 * * 0" # 4:40 UTC Sunday + - cron: "50 4 * * 1,2,3,4,5,6" # 4:50 UTC All But Sunday + - cron: "50 4 * * 0" # 4:50 UTC Sunday workflow_call: workflow_dispatch: @@ -39,7 +39,7 @@ jobs: build-iso-latest: name: Build Latest ISOs needs: [build-image-latest] - if: github.event.schedule == '40 4 * * 0' + if: github.event.schedule == '50 4 * * 0' secrets: inherit uses: ./.github/workflows/build-iso-latest.yml diff --git a/.github/workflows/build-image-stable.yml b/.github/workflows/build-image-stable.yml index 814101e720f..31f01ba426b 100644 --- a/.github/workflows/build-image-stable.yml +++ b/.github/workflows/build-image-stable.yml @@ -8,8 +8,8 @@ on: paths-ignore: - "**.md" schedule: - - cron: "45 5 * * 1,2,3,4,5,6" # 5:41 UTC everyday - - cron: "45 5 * * 0" # 5:41 UTC sunday + - cron: "50 5 * * 1,2,3,4,5,6" # 5:50 UTC everyday + - cron: "50 5 * * 0" # 5:50 UTC sunday workflow_call: workflow_dispatch: @@ -38,6 +38,6 @@ jobs: build-iso-stable: name: Build Stable ISOs needs: [build-image-stable] - if: github.event.schedule == '45 5 * * 0' + if: github.event.schedule == '50 5 * * 0' secrets: inherit uses: ./.github/workflows/build-iso-stable.yml diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml index ff4c2fce0d9..36c61bd0139 100644 --- a/.github/workflows/generate-release.yml +++ b/.github/workflows/generate-release.yml @@ -62,7 +62,7 @@ jobs: - name: Create Release uses: softprops/action-gh-release@v2 - if: contains(fromJson('["gts", "stable"]'), matrix.version) && (github.event.schedule == '45 5 * * 0' || contains(fromJson('["workflow_dispatch", "workflow_call"]'), github.event_name)) + if: contains(fromJson('["gts", "stable"]'), matrix.version) && (github.event.schedule == '50 5 * * 0' || contains(fromJson('["workflow_dispatch", "workflow_call"]'), github.event_name)) with: name: ${{ steps.generate-release-text.outputs.title }} tag_name: ${{ steps.generate-release-text.outputs.tag }}