Fix GHA building servers individually for every tag, instead of just on the server tag.

This commit is contained in:
Julian Groß 2024-07-07 09:58:22 +02:00
parent 1216a52a70
commit 9c4cfd2eda

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: