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 name: Test Release Build
# Runs on every push, manual dispatch, or when the 'make-test-build' label # Runs when the 'make-test-build' label is applied to a pull request,
# is assigned to a pull request. # or on any subsequent commit while that label is present.
on: on:
push:
workflow_dispatch:
pull_request: pull_request:
types: [labeled] types: [labeled, synchronize]
jobs: jobs:
test-release-build: test-release-build:
runs-on: ubuntu-latest 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: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with: