fix when test release is triggered

This commit is contained in:
Meliox 2026-06-07 17:56:57 +02:00
parent 92f4104c3b
commit d142c488ae

View File

@ -1,18 +1,16 @@
name: Test Release Build
# Runs on every push, manual dispatch, or when the 'make-test-build' label
# is assigned to a pull request.
# Runs when the 'make-test-build' label is applied to a pull request,
# or on any subsequent commit while that label is present.
on:
push:
workflow_dispatch:
pull_request:
types: [labeled]
types: [labeled, synchronize]
jobs:
test-release-build:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.label.name == 'make-test-build'
if: contains(github.event.pull_request.labels.*.name, 'make-test-build')
steps:
- uses: actions/checkout@v4
with: