15 lines
429 B
YAML
15 lines
429 B
YAML
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@4ffc7888bffd451b357355dc214d43bb9f23917e
|
|
with:
|
|
identifier: ChatterinoTeam.Chatterino
|
|
installers-regex: ^Chatterino.Installer.exe$
|
|
token: ${{ secrets.WINGET_TOKEN }}
|