From a97bed810c60add43289d5bab4339bcadbb5186d Mon Sep 17 00:00:00 2001 From: covalent Date: Sun, 27 Aug 2023 11:35:35 -0400 Subject: [PATCH] add automtic winget push --- .github/workflows/winget-release-yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/winget-release-yml diff --git a/.github/workflows/winget-release-yml b/.github/workflows/winget-release-yml new file mode 100644 index 0000000..c9462dd --- /dev/null +++ b/.github/workflows/winget-release-yml @@ -0,0 +1,13 @@ +name: Publish to WinGet +on: + release: + types: [released] +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/winget-releaser@v2 + with: + identifier: Vup.Vup + installers-regex: '\.exe$' # Only .exe files + token: ${{ secrets.WINGET_TOKEN }} \ No newline at end of file