mirror of
https://github.com/sxyazi/yazi.git
synced 2024-11-24 09:53:12 +03:00
66e83f3e18
Co-authored-by: 三咲雅 · Misaki Masa <sxyazi@gmail.com>
21 lines
445 B
YAML
21 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 }}
|