Skip to content

Commit

Permalink
Add github action to automatically release new versions to winget
Browse files Browse the repository at this point in the history
  • Loading branch information
soredake authored and aandrew-me committed Nov 29, 2024
1 parent 63fc20b commit 02ded1d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release_to_winget.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 02ded1d

Please sign in to comment.