60faf367e5
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/DesktopEditors/pulls/20 Co-authored-by: Roman Demidov <roman.demidov@onlyoffice.com> Co-committed-by: Roman Demidov <roman.demidov@onlyoffice.com>
16 lines
358 B
YAML
16 lines
358 B
YAML
name: Publish to WinGet
|
|
on:
|
|
release:
|
|
types: [released]
|
|
jobs:
|
|
publish:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Publish to WinGet
|
|
uses: vedantmgoyal9/winget-releaser@main
|
|
with:
|
|
identifier: ONLYOFFICE.DesktopEditors
|
|
installers-regex: '(x86|x64|arm64)\.exe$'
|
|
token: ${{ secrets.WINGET_TOKEN }}
|
|
|