Merge pull request #2867 from signalwire/gha-meta-job

[GHA] Simplify `if` logic for Meta job
This commit is contained in:
Andrey Volk
2025-07-22 22:37:06 +03:00
committed by GitHub

View File

@@ -192,14 +192,9 @@ jobs:
name: "Publish build data to meta-repo"
if: >-
${{
(github.event.pull_request.head.repo.full_name == github.repository) &&
(
(
github.event_name != 'pull_request' &&
github.event_name != 'workflow_dispatch'
) ||
(github.event_name == 'workflow_dispatch' && inputs.publish)
)
github.event_name == 'push' &&
github.repository == 'signalwire/freeswitch' &&
contains(fromJSON('["master", "v1.10"]'), github.ref_name)
}}
needs:
- deb-public