From e02647feff1cb2bb632182eec5a2802346204d2d Mon Sep 17 00:00:00 2001 From: Jonathan Chemla Date: Wed, 22 Oct 2025 00:09:48 +0200 Subject: [PATCH] auto-publish to winget-pkgs (#1188) --- .github/workflows/publish-winget.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/publish-winget.yml diff --git a/.github/workflows/publish-winget.yml b/.github/workflows/publish-winget.yml new file mode 100644 index 00000000..6747a566 --- /dev/null +++ b/.github/workflows/publish-winget.yml @@ -0,0 +1,21 @@ +name: Publish release to WinGet +on: + release: + types: [released] + workflow_dispatch: + inputs: + tag_name: + description: "Specific tag name" + required: false + type: string + +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal9/winget-releaser@main + with: + identifier: jeffvli.Feishin + installers-regex: 'Feishin-*-win-x64\.exe' + token: ${{ secrets.WINGET_ACC_TOKEN }} +