File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 2424run-name : >-
2525 ${{ (github.ref_name == 'unstable'
2626 || github.event_name == 'workflow_dispatch'
27- || github.event_name == 'workflow_call')
27+ || github.event_name == 'workflow_call'
28+ || github.event_name == 'schedule')
2829 && 'Build Unstable'
2930 || format('Build on {0} to {1}', github.event_name, github.ref_name)
3031 }}
@@ -37,14 +38,15 @@ jobs:
3738 BUILD_ARCHS : ${{ vars.BUILD_ARCHS }}
3839 BUILD_EXCLUDE : ${{ vars.BUILD_EXCLUDE }}
3940 SMOKE_TEST_IMAGES : ${{ vars.SMOKE_TEST_IMAGES }}
40- # determine whether we should use special "unstable" release_tag
41- # Assume that for unstable branch and for any external call or dispatch
42- # we are building unstable release
43- # In other cases it's a regular PR/push build
41+ # Determine whether we should use special "unstable" release_tag. Assume
42+ # that for unstable branch and for any external call, dispatch or schedule
43+ # we are building unstable release. In other cases it's a regular PR/push
44+ # build without using specific release_tag.
4445 release_tag : >-
4546 ${{ (github.ref_name == 'unstable'
4647 || github.event_name == 'workflow_dispatch'
47- || github.event_name == 'workflow_call')
48+ || github.event_name == 'workflow_call'
49+ || github.event_name == 'schedule')
4850 && 'unstable'
4951 || ''
5052 }}
You can’t perform that action at this time.
0 commit comments