18 lines
423 B
YAML
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 }}
|