diff options
author | James McCoy <jamessan@jamessan.com> | 2020-12-06 09:52:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 09:52:22 -0500 |
commit | 08c0eef52a31f70190fd4aa0ea8d54c0a169b284 (patch) | |
tree | 63f9ab1a98ba056a60b9d8623a0803b3e4330be4 | |
parent | ef3230f35bcf1dbcd4e6b6b2cf7d1d2fbe0025b5 (diff) | |
parent | f9bd3f9cb50fd0d6059d732c30c8ba9ff65a13ab (diff) | |
download | rneovim-08c0eef52a31f70190fd4aa0ea8d54c0a169b284.tar.gz rneovim-08c0eef52a31f70190fd4aa0ea8d54c0a169b284.tar.bz2 rneovim-08c0eef52a31f70190fd4aa0ea8d54c0a169b284.zip |
Merge pull request #13467 from jamessan/release-fixes
-rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c4ce0ddc2..6d66ff0c18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: run: | make CMAKE_BUILD_TYPE=RelWithDebinfo CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH=" printf '::set-output name=version::%s\n' "$(./build/bin/nvim --version | head -n 3 | sed -z 's/\n/%0A/g')" - printf '::set-output name=release::%s\n' "$(./build/bin/nvim --version | head -n 1 | sed 's/-.*//')" + printf '::set-output name=release::%s\n' "$(./build/bin/nvim --version | head -n 1)" make DESTDIR="$GITHUB_WORKSPACE/build/release/nvim-linux64" install cd "$GITHUB_WORKSPACE/build/release" tar cfz nvim-linux64.tar.gz nvim-linux64 @@ -50,7 +50,7 @@ jobs: sudo apt-get install -y autoconf automake build-essential cmake gcc-multilib gettext gperf libtool-bin locales ninja-build pkg-config unzip - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly') run: make appimage-latest - - if: github.event_name == 'scheduled' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly') + - if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly') run: make appimage-nightly - uses: actions/upload-artifact@v2 with: @@ -107,7 +107,7 @@ jobs: - uses: actions/download-artifact@v2 - if: github.event_name == 'workflow_dispatch' run: echo "TAG_NAME=${{ github.event.inputs.tag_name }}" >> $GITHUB_ENV - - if: github.event_name == 'scheduled' + - if: github.event_name == 'schedule' run: echo 'TAG_NAME=nightly' >> $GITHUB_ENV - if: github.event_name == 'push' run: | |