diff options
author | Vedant <83997633+vedantmgoyal2009@users.noreply.github.com> | 2022-11-17 14:13:45 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 09:43:45 +0100 |
commit | 488e99311f70e4a90919c06c37882870e3ba05ac (patch) | |
tree | 39f7cd74e19dc638465d47e600f7ad23ef9912f0 | |
parent | 6aa5520763646140482e19f69a5994932bf1d9fd (diff) | |
download | rneovim-488e99311f70e4a90919c06c37882870e3ba05ac.tar.gz rneovim-488e99311f70e4a90919c06c37882870e3ba05ac.tar.bz2 rneovim-488e99311f70e4a90919c06c37882870e3ba05ac.zip |
ci(release/winget): correctly set output variable (#21077)
-rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2655281ef7..113b04ab2b 100644 --- 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 |