Skip to content

Commit e0cd63a

Browse files
authored
Merge pull request #1559 from sitiom/winget-releaser
Add Winget Releaser workflow
2 parents bb41da6 + 0b35f31 commit e0cd63a

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ updates:
1515
- "jjw24"
1616
- "taooceros"
1717
- "JohnTheGr8"
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "daily"

.github/workflows/winget.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Publish to Winget
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
publish:
9+
# Action can only be run on windows
10+
runs-on: windows-latest
11+
steps:
12+
- uses: vedantmgoyal2009/winget-releaser@v1
13+
with:
14+
identifier: Flow-Launcher.Flow-Launcher
15+
token: ${{ secrets.WINGET_TOKEN }}

0 commit comments

Comments
 (0)