mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-22 15:21:04 +00:00
20 lines
445 B
YAML
20 lines
445 B
YAML
name: Publish
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
winget:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
merge-multiple: true
|
|
|
|
- name: Publish to Winget
|
|
uses: vedantmgoyal9/winget-releaser@main
|
|
with:
|
|
identifier: sxyazi.yazi
|
|
installers-regex: 'yazi-(x86_64|aarch64)-pc-windows-msvc\.zip$'
|
|
token: ${{ secrets.WINGET_TOKEN }}
|