This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git


The following commit(s) were added to refs/heads/main by this push:
     new 39d675d  chore(release): Test wheels nightly (#157)
39d675d is described below

commit 39d675d5f9674345c040aae99b3b3a67b3f270a2
Author: Junru Shao <[email protected]>
AuthorDate: Thu Oct 16 17:59:12 2025 -0700

    chore(release): Test wheels nightly (#157)
    
    All wheel building is triggered 9am UTC every day, but publishing is
    limited to explicit manual trigger (workflow_dispatch)
---
 .github/workflows/publish_wheel.yml | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/publish_wheel.yml 
b/.github/workflows/publish_wheel.yml
index f5b3dcf..ffd77fd 100644
--- a/.github/workflows/publish_wheel.yml
+++ b/.github/workflows/publish_wheel.yml
@@ -18,8 +18,8 @@
 name: Publish wheel
 
 on:
-  push:
-    branches: [main]        # <-- build on every commit to main
+  schedule:
+    - cron: '0 9 * * *'  # every day at 9am UTC
   workflow_dispatch:
     inputs:
       branch:
@@ -28,9 +28,6 @@ on:
 
 jobs:
   build_wheels:
-    # Only build manylinux2014 on manual runs (workflow_dispatch)
-    if: ${{ github.event_name == 'workflow_dispatch' || matrix.linux_image != 
'manylinux2014' }}
-    name: Build wheels on ${{ matrix.os }}-${{ matrix.arch }} ${{ 
matrix.linux_image }}
     runs-on: ${{ matrix.os }}
     strategy:
       fail-fast: false

Reply via email to