File tree 3 files changed +18
-3
lines changed 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
main
7
+ release/*
8
+ tags :
9
+ # NOTE: Binary build pipelines should only get triggered on release candidate or nightly builds
10
+ # Release candidate tags look like: v1.11.0-rc1
11
+ - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
7
12
paths :
8
13
- conda/Dockerfile
9
14
- ' common/*'
19
24
DOCKER_BUILDKIT : 1
20
25
DOCKER_ID : ${{ secrets.DOCKER_ID }}
21
26
DOCKER_TOKEN : ${{ secrets.DOCKER_TOKEN }}
22
- WITH_PUSH : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
27
+ WITH_PUSH : ${{ github.event_name == 'push' && ( github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release')) }}
23
28
24
29
jobs :
25
30
build-docker :
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
main
7
+ release/*
8
+ tags :
9
+ # NOTE: Binary build pipelines should only get triggered on release candidate or nightly builds
10
+ # Release candidate tags look like: v1.11.0-rc1
11
+ - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
7
12
paths :
8
13
- .github/workflows/build-libtorch-images.yml
9
14
- libtorch/Dockerfile
21
26
DOCKER_BUILDKIT : 1
22
27
DOCKER_ID : ${{ secrets.DOCKER_ID }}
23
28
DOCKER_TOKEN : ${{ secrets.DOCKER_TOKEN }}
24
- WITH_PUSH : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
29
+ WITH_PUSH : ${{ github.event_name == 'push' && ( github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release')) }}
25
30
26
31
jobs :
27
32
build-docker-cuda :
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
main
7
+ release/*
8
+ tags :
9
+ # NOTE: Binary build pipelines should only get triggered on release candidate or nightly builds
10
+ # Release candidate tags look like: v1.11.0-rc1
11
+ - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
7
12
paths :
8
13
- .github/workflows/build-manywheel-images.yml
9
14
- manywheel/Dockerfile
23
28
DOCKER_BUILDKIT : 1
24
29
DOCKER_ID : ${{ secrets.DOCKER_ID }}
25
30
DOCKER_TOKEN : ${{ secrets.DOCKER_TOKEN }}
26
- WITH_PUSH : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
31
+ WITH_PUSH : ${{ github.event_name == 'push' && ( github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release')) }}
27
32
28
33
jobs :
29
34
build-docker-cuda :
You can’t perform that action at this time.
0 commit comments