Skip to content

Commit d8b3e14

Browse files
committed
[CI] Fix concurrency in release branches builds
1 parent 5736cb0 commit d8b3e14

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/build-wheels-aarch64-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
branches:
77
- nightly
88
- main
9-
- release/*
9+
# NOTE: release/* branches are NOT listed here to avoid race conditions
10+
# with the Release workflow which calls this workflow via workflow_call
1011
tags:
1112
# NOTE: Binary build pipelines should only get triggered on release candidate builds
1213
# Release candidate tags look like: v1.11.0-rc1

.github/workflows/build-wheels-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
branches:
77
- nightly
88
- main
9-
- release/*
9+
# NOTE: release/* branches are NOT listed here to avoid race conditions
10+
# with the Release workflow which calls this workflow via workflow_call
1011
tags:
1112
# NOTE: Binary build pipelines should only get triggered on release candidate builds
1213
# Release candidate tags look like: v1.11.0-rc1

.github/workflows/build-wheels-m1.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
branches:
77
- nightly
88
- main
9-
- release/*
9+
# NOTE: release/* branches are NOT listed here to avoid race conditions
10+
# with the Release workflow which calls this workflow via workflow_call
1011
tags:
1112
# NOTE: Binary build pipelines should only get triggered on release candidate builds
1213
# Release candidate tags look like: v1.11.0-rc1

.github/workflows/build-wheels-windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
branches:
77
- nightly
88
- main
9-
- release/*
9+
# NOTE: release/* branches are NOT listed here to avoid race conditions
10+
# with the Release workflow which calls this workflow via workflow_call
1011
tags:
1112
# NOTE: Binary build pipelines should only get triggered on release candidate builds
1213
# Release candidate tags look like: v1.11.0-rc1

0 commit comments

Comments
 (0)