Skip to content

Commit

Permalink
ci: add winget releaser workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sitiom authored and LGUG2Z committed Mar 11, 2024
1 parent 27624b9 commit 4686184
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SCOOP_TOKEN: ${{ secrets.SCOOP_TOKEN }}

winget:
name: Publish to WinGet
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/v')

steps:
- uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: LGUG2Z.komokana
installers-regex: '\.zip$'
token: ${{ secrets.WINGET_TOKEN }}

1 comment on commit 4686184

@goyalyashpal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice steps on winget releaser. scoop smth too?

Please sign in to comment.