Merge pull request #1071 from JulianGro/fix_multiple_server_builds

Fix GHA building hundreds of servers
This commit is contained in:
Julian Groß 2024-07-08 12:08:02 +02:00 committed by GitHub
commit ebcd6c09c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: