From 84d384ed2978b330211ae796b0d3cb4076e4908c Mon Sep 17 00:00:00 2001 From: sitiom Date: Tue, 2 Aug 2022 17:30:24 +0800 Subject: [PATCH] Add Winget Releaser workflow --- .github/workflows/winget.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/winget.yml diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml new file mode 100644 index 0000000..b6507cd --- /dev/null +++ b/.github/workflows/winget.yml @@ -0,0 +1,13 @@ +name: Publish to WinGet +on: + release: + types: [released] + +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/winget-releaser@latest + with: + identifier: ViGEm.ViGEmBus + token: ${{ secrets.WINGET_TOKEN }}