summaryrefslogtreecommitdiff
path: root/.github/workflows/winget.yml
blob: ca702326f1079ed7c43dcf472ebc43e9b07bdbc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Publish to Winget
on:
  release:
    types: [released]

jobs:
  publish:
    runs-on: windows-latest # Action can only run on Windows
    steps:
      - uses: vedantmgoyal2009/winget-releaser@v2
        with:
          identifier: junegunn.fzf
          version: ${{ github.event.release.tag_name }}
          installers-regex: '-windows_(armv7|arm64|amd64)\.zip$'
          token: ${{ secrets.WINGET_TOKEN }}