Skip to content

Commit

Permalink
chore(ci): revert unrelated hunk in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
InNoobWeTrust committed Feb 29, 2024
1 parent 0c21b29 commit 8b2afdd
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
schedule:
- cron: "0 20 * * *" # At 0:20 UTC, which is 7:20 AM UTC+7
- cron: "0 20 * * *" # At 8 PM UTC, which is 3 AM UTC+7
push:
branches:
- main
Expand Down Expand Up @@ -821,8 +821,7 @@ jobs:

update_release_draft:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
needs:
[
needs: [
ubuntu-amd64-build,
ubuntu-amd64-cuda-build,
macOS-silicon-build,
Expand All @@ -844,8 +843,7 @@ jobs:

noti-discord-nightly:
if: always() && github.event_name == 'schedule' && (needs.create-draft-release.result == 'success' || needs.create-draft-release.result == 'skipped') && needs.ubuntu-amd64-build.result == 'success' && needs.ubuntu-amd64-cuda-build.result == 'success' && needs.macOS-silicon-build.result == 'success' && needs.macOS-amd64-build.result == 'success' && needs.windows-amd64-build.result == 'success' && needs.windows-amd64-cuda-build.result == 'success'
needs:
[
needs: [
create-draft-release,
ubuntu-amd64-build,
ubuntu-amd64-cuda-build,
Expand Down Expand Up @@ -883,8 +881,7 @@ jobs:

noti-discord-manual:
if: always() && github.event_name == 'workflow_dispatch' && (needs.create-draft-release.result == 'success' || needs.create-draft-release.result == 'skipped') && needs.ubuntu-amd64-build.result == 'success' && needs.ubuntu-amd64-cuda-build.result == 'success' && needs.macOS-silicon-build.result == 'success' && needs.macOS-amd64-build.result == 'success' && needs.windows-amd64-build.result == 'success' && needs.windows-amd64-cuda-build.result == 'success'
needs:
[
needs: [
create-draft-release,
ubuntu-amd64-build,
ubuntu-amd64-cuda-build,
Expand Down

0 comments on commit 8b2afdd

Please sign in to comment.