change when test release is triggered (#172)

Co-authored-by: Meliox <na>
This commit is contained in:
Meliox 2026-06-07 17:58:30 +02:00 committed by GitHub
parent 92f4104c3b
commit e602663b0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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: