Skip to content

Commit

Permalink
Update WinGet Release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nomandhoni-cs authored Dec 22, 2024
1 parent 2732539 commit d27073a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/WinGet Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,18 @@ jobs:
publish:
runs-on: windows-latest
steps:
- uses: vedantmgoyal9/winget-releaser@main
- name: Publish to WinGet (.exe)
uses: vedantmgoyal9/winget-releaser@main
with:
identifier: NomanDhoni.BlinkEye
identifier: NomanDhoni.BlinkEye # Replace with your app identifier
release-tag: ${{ github.event.inputs.version }} # Access version input
max-versions-to-keep: 5 # keep only latest 5 versions
installers-regex: '\.exe$' # Only .exe files
token: ${{ secrets.WINGET_TOKEN_BLINK_EYE }}

- name: Publish to WinGet (.msi)
uses: vedantmgoyal9/winget-releaser@main
with:
identifier: NomanDhoni.BlinkEye # Replace with your app identifier
release-tag: ${{ github.event.inputs.version }} # Access version input
installers-regex: '\.msi$' # Only .msi files
token: ${{ secrets.WINGET_TOKEN_BLINK_EYE }}

0 comments on commit d27073a

Please sign in to comment.