mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
ci: add workflow for WinGet (#5365)
This commit is contained in:
parent
eafcb941f5
commit
80cf1e533c
14
.github/workflows/winget.yml
vendored
Normal file
14
.github/workflows/winget.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: Publish to WinGet
|
||||
on:
|
||||
release:
|
||||
types: [released]
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: windows-latest
|
||||
if: ${{ startsWith(github.event.release.tag_name, 'v') }}
|
||||
steps:
|
||||
- uses: vedantmgoyal2009/winget-releaser@v2
|
||||
with:
|
||||
identifier: ChatterinoTeam.Chatterino
|
||||
installers-regex: ^Chatterino.Installer.exe$
|
||||
token: ${{ secrets.WINGET_TOKEN }}
|
Loading…
Reference in a new issue