Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 3c5f5d2

Browse files
committed
feat(release): add reusable workflow to deploy to winget
1 parent 6688151 commit 3c5f5d2

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release to winget
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
release_tag:
6+
description: 'Git tag to release from'
7+
required: true
8+
jobs:
9+
release-winget:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Publish to WinGet
13+
uses: vedantmgoyal9/winget-releaser@main
14+
with:
15+
identifier: TriliumNext.Notes
16+
token: ${{ secrets.WINGET_PAT }}
17+
release-tag: ${{ github.event.inputs.release_tag }}

0 commit comments

Comments
 (0)