Skip to content

Commit 0088531

Browse files
committed
Set nightly wheels build to run on a daily schedule
Updated the workflow trigger from `unstable` branch pushes to a daily cron schedule at 02:00 UTC. Adjusted .gitattributes to ensure consistency by prioritizing our fork's version of workflow files during merges.
1 parent 09bb8f6 commit 0088531

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
*.pkl binary
22
# Always keep our fork's version of pyproject.toml
33
pyproject.toml merge=ours
4+
# Always keep our fork's GitHub Actions workflows
5+
.github/workflows/build.yml merge=ours

.github/workflows/nightly_wheels.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
name: Build Nightly Wheels
1616

1717
on:
18-
push:
19-
branches:
20-
- unstable
18+
schedule:
19+
- cron: "0 2 * * *" # Every day at 02:00 UTC
2120

2221
env:
2322
VCPKG_ROOT: ${{ github.workspace }}/vendor/vcpkg

0 commit comments

Comments
 (0)