From bcfa2b0bdf28b9d15665b6cc6f525ce1526fde71 Mon Sep 17 00:00:00 2001 From: Ryan Caezar Itang Date: Thu, 5 Jan 2023 10:03:47 +0800 Subject: [PATCH] Add Winget Releaser workflow --- .github/workflows/winget.yml | 15 +++++++++++++++ 1 file changed, 15 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..d11fd2a --- /dev/null +++ b/.github/workflows/winget.yml @@ -0,0 +1,15 @@ +name: Publish to Winget + +on: + release: + types: [released] + +jobs: + publish: + # Action can only be run on windows + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/winget-releaser@v1 + with: + identifier: pizzaboxer.Bloxstrap + token: ${{ secrets.WINGET_TOKEN }}