Skip to content

Commit

Permalink
ci: Add push trigger for binary build workflows (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
seemethere authored May 20, 2024
1 parent f0f00ce commit 3c9bc20
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build_wheels_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ on:
paths:
- build/packaging/**
- .github/workflows/build_wheels_linux.yml
push:
branches:
- nightly
- main
- release/*
tags:
# NOTE: Binary build pipelines should only get triggered on release candidate builds
# Release candidate tags look like: v1.11.0-rc1
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
schedule:
- cron: '0 0 * * *' # Runs at midnight UTC every day
workflow_dispatch:
Expand Down

0 comments on commit 3c9bc20

Please sign in to comment.