14 lines
367 B
YAML
Raw Normal View History

2022-05-08 22:55:29 +05:30
name: Publish to WinGet
on:
release:
types: [released]
jobs:
publish:
runs-on: windows-latest # action can only be run on windows
steps:
2022-09-30 23:24:39 +05:30
- uses: vedantmgoyal2009/winget-releaser@v1
2022-05-08 22:55:29 +05:30
with:
identifier: h3poteto.whalebird-desktop
2022-09-30 23:24:39 +05:30
version: ${{ github.event.release.tag_name }}
2022-05-08 22:55:29 +05:30
token: ${{ secrets.WINGET_TOKEN }}