diff options
-rw-r--r-- | .github/workflows/release-winget.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/release-winget.yml b/.github/workflows/release-winget.yml new file mode 100644 index 0000000000..c3ca5fe752 --- /dev/null +++ b/.github/workflows/release-winget.yml @@ -0,0 +1,12 @@ +name: Publish to WinGet +on: + release: + types: [released] +jobs: + publish: + runs-on: windows-latest # action can only be run on windows + steps: + - uses: vedantmgoyal2009/winget-releaser@latest + with: + identifier: Neovim.Neovim + token: ${{ secrets.WINGET_TOKEN }} |