From a8f4ca350f21bd37fd19050c77a7b9516aa1704e Mon Sep 17 00:00:00 2001 From: Roman Demidov Date: Thu, 26 Jan 2023 17:50:27 +0300 Subject: [PATCH] Add deployment action to WinGet (#1183) * Add deployment action to WinGet * Add all .msi and .exe files * Small changes * Small changes * Small changes --- .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..74aa78f --- /dev/null +++ b/.github/workflows/winget.yml @@ -0,0 +1,15 @@ +name: Publish to WinGet +on: + release: + types: [released] +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/winget-releaser@v1 + with: + identifier: ONLYOFFICE.DesktopEditors + installers-regex: '\.exe$|\.msi$' + token: ${{ secrets.WINGET_TOKEN }} + fork-user: ONLYOFFICE +