fix(ci): restrict auto-release to workflow_dispatch only [skip ci]

This commit is contained in:
2026-05-16 17:57:18 +00:00
parent 6a7c137d36
commit 6d714ee1d2
+1 -9
View File
@@ -26,13 +26,6 @@
name: "Universal: Build & Release"
on:
pull_request:
types: [closed]
branches:
- main
paths:
- 'src/**'
- 'htdocs/**'
workflow_dispatch:
env:
@@ -48,8 +41,7 @@ jobs:
release:
name: Build & Release Pipeline
runs-on: release
if: >-
github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
if: github.event_name == 'workflow_dispatch'
steps:
- name: Checkout repository