Add github action to automatically release new versions to winget
This commit is contained in:
parent
63fc20b670
commit
02ded1df99
13
.github/workflows/release_to_winget.yml
vendored
Normal file
13
.github/workflows/release_to_winget.yml
vendored
Normal 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 }}
|
Loading…
x
Reference in New Issue
Block a user