We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c81c2 commit 61ecd18Copy full SHA for 61ecd18
.github/workflows/test-m1.yml
@@ -8,10 +8,6 @@ on:
8
- nightly
9
- main
10
- release/*
11
- tags:
12
- # NOTE: Binary build pipelines should only get triggered on release candidate builds
13
- # Release candidate tags look like: v1.11.0-rc1
14
- - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
15
workflow_dispatch:
16
env:
17
CHANNEL: "nightly"
@@ -34,7 +30,7 @@ jobs:
34
30
echo "CHANNEL=test" >> "$GITHUB_ENV"
35
31
fi
36
32
- name: Set Release CHANNEL (for release)
37
- if: ${{ github.event_name == 'pull_request' && startsWith(github.base_ref, 'release') }}
33
+ if: ${{ (github.event_name == 'pull_request' && startsWith(github.base_ref, 'release')) || startsWith(github.ref, 'release') }}
38
run: |
39
40
- name: Install TorchVision
0 commit comments