mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
15 lines
318 B
YAML
15 lines
318 B
YAML
name: Publish to Winget
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
jobs:
|
|
publish:
|
|
# Action can only be run on windows
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: vedantmgoyal2009/winget-releaser@v1
|
|
with:
|
|
identifier: Flow-Launcher.Flow-Launcher
|
|
token: ${{ secrets.WINGET_TOKEN }}
|