Files
Suwayomi-Server/.github/workflows/winget.yml
T
2025-07-07 23:05:33 -04:00

18 lines
423 B
YAML

name: Publish to WinGet
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
jobs:
publish:
runs-on: windows-latest # action can only be run on windows
steps:
- uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: Suwayomi.Tachidesk-Server
installers-regex: '.*x64.msi$'
token: ${{ secrets.WINGET_PUBLISH_PAT }}
version: ${{ github.ref_name }}