-
Notifications
You must be signed in to change notification settings - Fork 418
30 lines (30 loc) · 958 Bytes
/
winget-stable.yml
File metadata and controls
30 lines (30 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Publish to WinGet - stable builds
on:
# release:
# types: [released]
workflow_dispatch:
inputs:
version:
type: string
required: true
description: Version
jobs:
publish:
runs-on: windows-latest
steps:
- name: Publish smtp4dev to WinGet
uses: vedantmgoyal9/winget-releaser@main
with:
identifier: Rnwood.Smtp4dev
installers-regex: 'Rnwood.Smtp4dev-win-(x64|arm64)-.*\.zip'
token: ${{ secrets.WINGET_TOKEN }}
version: ${{ inputs.version }}
release-tag: ${{ inputs.version }}
- name: Publish smtp4dev.Desktop to WinGet
uses: vedantmgoyal9/winget-releaser@main
with:
identifier: Rnwood.Smtp4dev.Desktop
installers-regex: 'Rnwood.Smtp4dev.Desktop-win-x64-.*\.zip'
token: ${{ secrets.WINGET_TOKEN }}
version: ${{ inputs.version }}
release-tag: ${{ inputs.version }}