[CI] Fix package job not running with PR label
The job would only run when the PR was labeled since `github.event.label.name` only available when `labeled` type event recieved
This commit is contained in:
parent
9d4ca77ef7
commit
5931d0cc0b
|
@ -16,7 +16,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
windows_package:
|
windows_package:
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
if: (github.event_name != 'pull_request' || github.event.label.name == 'windows')
|
if: (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'package'))
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: [x64, x86]
|
arch: [x64, x86]
|
||||||
|
|
Loading…
Reference in New Issue