mirror of
https://github.com/neovim/neovim.git
synced 2026-01-30 17:11:11 +10:00
- forked winget-pkgs to https://github.com/neovim/winget-pkgs - key stored in WINGET_TOKEN at https://github.com/neovim/neovim/settings/secrets/actions - deploy key public key stored at https://github.com/neovim/winget-pkgs/settings/keys
13 lines
302 B
YAML
13 lines
302 B
YAML
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 }}
|