commit 488e99311f70e4a90919c06c37882870e3ba05ac
parent 6aa5520763646140482e19f69a5994932bf1d9fd
Author: Vedant <83997633+vedantmgoyal2009@users.noreply.github.com>
Date: Thu, 17 Nov 2022 14:13:45 +0530
ci(release/winget): correctly set output variable (#21077)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
@@ -266,7 +266,7 @@ jobs:
Invoke-WebRequest https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.msi -OutFile setup.msi
Install-Module -Name 'Carbon.Windows.Installer' -Force
$VERSION = (Get-CMsi (Resolve-Path .\setup.msi).Path).ProductVersion
- echo "version=$VERSION" >> $GITHUB_OUTPUT
+ "version=$VERSION" >> $env:GITHUB_OUTPUT
- if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly')
name: Publish nightly
uses: vedantmgoyal2009/winget-releaser@v1