mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 00:03:02 +02:00
Fix GHA building servers individually for every tag, instead of just on the server tag.
This commit is contained in:
parent
1216a52a70
commit
9c4cfd2eda
1 changed files with 2 additions and 2 deletions
4
.github/workflows/linux_server_build.yml
vendored
4
.github/workflows/linux_server_build.yml
vendored
|
@ -26,8 +26,8 @@ env:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
# Only run master or tagged builds, or PRs if labeled as "server"
|
||||
if: contains( github.event.pull_request.labels.*.name, 'server') || github.event_name != 'pull_request'
|
||||
# Only run master or tagged builds, or PRs when labeled as "server"
|
||||
if: github.event.label.name == 'server'|| github.event_name != 'pull_request'
|
||||
name: "${{matrix.os}}, ${{matrix.arch}}"
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
Loading…
Reference in a new issue