We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bcf893 commit fd10530Copy full SHA for fd10530
.github/workflows/winget.yml
@@ -0,0 +1,21 @@
1
+name: Publish to Winget
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: 'Version Tag (e.g. v1.1.0)'
8
+ required: true
9
10
+jobs:
11
+ winget:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Submit to Winget
15
+ uses: vedantmgoyal2009/winget-releaser@v2
16
+ with:
17
+ identifier: M-Rajabi-Dev.AudioShelf
18
+ token: ${{ secrets.ORG_ADMIN_TOKEN }}
19
+ installers-regex: 'AudioShelf-.*-Win64-Setup.exe$'
20
+ license: GPL-3.0
21
+ tag: ${{ inputs.version }}
0 commit comments