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.
2 parents ac40eea + 7d2c159 commit 32df552Copy full SHA for 32df552
.github/dependabot.yml
@@ -0,0 +1,6 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
.github/workflows/winget.yml
@@ -0,0 +1,17 @@
+name: Publish to Winget
+
+on:
+ release:
+ types: [released]
7
+jobs:
8
+ publish:
9
+ # Action can only be run on windows
10
+ runs-on: windows-latest
11
+ steps:
12
+ - uses: vedantmgoyal2009/winget-releaser@v1
13
+ with:
14
+ identifier: CoreyButler.NVMforWindows
15
+ version: ${{ github.event.release.tag_name }}
16
+ installers-regex: 'nvm-setup\.exe$'
17
+ token: ${{ secrets.WINGET_TOKEN }}
0 commit comments