Skip to content

Commit

Permalink
Merge pull request #31 from ublue-os/main
Browse files Browse the repository at this point in the history
[pull] main from ublue-os:main
  • Loading branch information
pull[bot] authored Dec 14, 2024
2 parents 3992a32 + 125657a commit daa621a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-image-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-image-gts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-image-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions .github/workflows/build-image-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/generate-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit daa621a

Please sign in to comment.