mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 06:24:41 +02:00
Merge pull request #1071 from JulianGro/fix_multiple_server_builds
Fix GHA building hundreds of servers
This commit is contained in:
commit
ebcd6c09c2
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:
|
jobs:
|
||||||
build:
|
build:
|
||||||
# Only run master or tagged builds, or PRs if labeled as "server"
|
# Only run master or tagged builds, or PRs when labeled as "server"
|
||||||
if: contains( github.event.pull_request.labels.*.name, 'server') || github.event_name != 'pull_request'
|
if: github.event.label.name == 'server'|| github.event_name != 'pull_request'
|
||||||
name: "${{matrix.os}}, ${{matrix.arch}}"
|
name: "${{matrix.os}}, ${{matrix.arch}}"
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
Loading…
Reference in a new issue