Skip to content

Commit 509139f

Browse files
authored
Merge pull request #647 from brl0/winget_publish
Add winget publish github action
2 parents a429577 + ab51e15 commit 509139f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/winget.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Publish to WinGet
2+
on:
3+
release:
4+
types: [released]
5+
jobs:
6+
publish:
7+
# Action can only be run on windows
8+
runs-on: windows-latest
9+
steps:
10+
- uses: vedantmgoyal2009/winget-releaser@v2
11+
# https://github.com/vedantmgoyal2009/winget-releaser
12+
with:
13+
identifier: ProjectJupyter.JupyterLab
14+
token: ${{ secrets.WINGET_TOKEN }}

0 commit comments

Comments
 (0)