mirror of
https://github.com/mikefarah/yq.git
synced 2026-07-03 10:55:36 +00:00
17 lines
398 B
YAML
17 lines
398 B
YAML
name: Publish release to WinGet
|
|
on:
|
|
release:
|
|
types: [released]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: vedantmgoyal9/winget-releaser@main
|
|
with:
|
|
identifier: MikeFarah.yq
|
|
installers-regex: 'yq_windows_amd64\.exe$'
|
|
version: ${{ github.event.release.tag_name }}
|
|
token: ${{ secrets.WINGET_TOKEN }}
|