Add github action to automatically release new versions to winget

pull/276/head
soredake 11 months ago committed by Andrew
parent 63fc20b670
commit 02ded1df99

@ -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 }}
Loading…
Cancel
Save