From 7cc5e1345c72d16d0149f578534217007dce1d68 Mon Sep 17 00:00:00 2001 From: Ryan Caezar Itang Date: Wed, 3 Aug 2022 23:31:29 +0800 Subject: [PATCH] Add Winget Releaser workflow --- .github/workflows/winget.yml | 14 ++++++++++++++ 1 file changed, 14 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 00000000..d1cd5166 --- /dev/null +++ b/.github/workflows/winget.yml @@ -0,0 +1,14 @@ +name: Publish to WinGet + +on: + release: + types: [released] + +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/winget-releaser@latest + with: + identifier: LizardByte.Sunshine + token: ${{ secrets.GH_BOT_TOKEN }}