aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-02-10 13:56:07 +0100
committerGitHub <noreply@github.com>2023-02-10 13:56:07 +0100
commitd5b1712dc4ced82e15a9a736626d4e2e3370c9b4 (patch)
treed5981376ba3e62f6d3a14cb1f3c5106f682fe436 /.github/workflows/release.yml
parent827947447e4d084e30850ff6530023c9db6d317f (diff)
downloadrneovim-d5b1712dc4ced82e15a9a736626d4e2e3370c9b4.tar.gz
rneovim-d5b1712dc4ced82e15a9a736626d4e2e3370c9b4.tar.bz2
rneovim-d5b1712dc4ced82e15a9a736626d4e2e3370c9b4.zip
ci: remove unnecessary environment variables (#22175)
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index f547e27b3b..838caf3fca 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -112,8 +112,7 @@ jobs:
windows:
runs-on: windows-2019
env:
- DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }}
- DEPS_PREFIX: ${{ format('{0}/nvim-deps/usr', github.workspace) }}
+ DEPS_BUILD_DIR: ${{ github.workspace }}/nvim-deps
CMAKE_BUILD_TYPE: "RelWithDebInfo"
name: windows (MSVC_64)
steps:
@@ -128,7 +127,7 @@ jobs:
cmake --build $env:DEPS_BUILD_DIR
- name: build package
run: |
- cmake -B build -G Ninja -DCMAKE_BUILD_TYPE='RelWithDebInfo' -DDEPS_PREFIX="$env:DEPS_PREFIX"
+ cmake -B build -G Ninja -DCMAKE_BUILD_TYPE='RelWithDebInfo'
cmake --build build --target package
- uses: actions/upload-artifact@v3
with: