mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-04 20:47:49 +00:00
16 lines
416 B
YAML
16 lines
416 B
YAML
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 }}
|