ci: add workflow_dispatch to winget releaser

This commit is contained in:
webadderall
2026-04-09 17:12:18 +10:00
parent ed493ee60b
commit 07dfb97cb6
+2 -1
View File
@@ -3,10 +3,11 @@ on:
workflow_run:
workflows: ["Publish Release"]
types: [completed]
workflow_dispatch:
jobs:
publish:
runs-on: windows-latest
if: github.event.workflow_run.conclusion == 'success'
if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'
steps:
- name: Get release tag
id: tag