mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
21 lines
472 B
YAML
21 lines
472 B
YAML
name: Publish release to WinGet
|
|
on:
|
|
release:
|
|
types: [released]
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag_name:
|
|
description: "Specific tag name"
|
|
required: false
|
|
type: string
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: vedantmgoyal9/winget-releaser@main
|
|
with:
|
|
identifier: jeffvli.Feishin
|
|
installers-regex: 'Feishin-*-win-(x64|arm64)\.exe'
|
|
token: ${{ secrets.WINGET_ACC_TOKEN }}
|