Add github action to automatically release new versions to winget

This commit is contained in:
soredake 2024-11-29 10:45:14 +02:00 committed by Andrew
parent 63fc20b670
commit 02ded1df99

13
.github/workflows/release_to_winget.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Publish to WinGet
on:
release:
types: [released]
jobs:
publish:
runs-on: windows-latest
steps:
- uses: vedantmgoyal9/winget-releaser@main
with:
identifier: Package.Identifier
installers-regex: '\.msi$' # Only .msi files
token: ${{ secrets.WINGET_TOKEN }}