From 9c95956c96d0d9383c655f46162f7130b05f9289 Mon Sep 17 00:00:00 2001 From: Lewis Crichton Date: Sat, 7 Oct 2023 17:10:07 +0100 Subject: [PATCH] ci: allow manual submissions (#140) --- .github/workflows/winget-submission.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/winget-submission.yml b/.github/workflows/winget-submission.yml index 211a91f3..8e7a8bb0 100644 --- a/.github/workflows/winget-submission.yml +++ b/.github/workflows/winget-submission.yml @@ -3,6 +3,12 @@ name: Submit to Winget Community Repo on: release: types: [published] + workflow_dispatch: + inputs: + tag: + type: string + description: The release tag to submit + required: true jobs: winget: @@ -15,3 +21,4 @@ jobs: identifier: Vencord.Vesktop token: ${{ secrets.WINGET_PAT }} installers-regex: '\.exe$' + release-tag: ${{ inputs.tag || github.event.release.tag_name }}