From c3f66199b58ee7f782518c6e608c9cdb98e2ae50 Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Sat, 25 May 2024 02:43:26 +0530 Subject: [PATCH] fix(workflow): error --- .github/workflows/build_windows.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 7deebccd9..7555ad2bf 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -50,7 +50,7 @@ jobs: ./vcpkg/bootstrap-vcpkg.bat - name: Install dependencies run: | - ../vcpkg/vcpkg install --x-install-root ../vcpkg/vcpkg/installed/ + ${{ github.workspace }}/vcpkg/vcpkg.exe install --x-install-root ${{ github.workspace }}/vcpkg/installed/ working-directory: windows - uses: actions-rs/toolchain@v1 with: @@ -64,7 +64,7 @@ jobs: LLVM_CONFIG_PATH: "C:\\Program Files\\LLVM\\bin\\llvm-config" CARGO_TARGET_DIR: "..\\..\\windows" BINDGEN_EXTRA_CLANG_ARGS: -fmsc-version=0 - VCPKG_ROOT: ${{ github.workspace }}/vcpkg + VCPKG_ROOT: ${{ github.workspace }}/vcpkg run: msbuild ccextractor.sln /p:Configuration=Release-Full /p:Platform=x64 working-directory: ./windows - name: Display version information @@ -103,7 +103,7 @@ jobs: ./vcpkg/bootstrap-vcpkg.bat - name: Install dependencies run: | - ../vcpkg/vcpkg install --x-install-root ../vcpkg/vcpkg/installed/ + ${{ github.workspace }}/vcpkg/vcpkg.exe install --x-install-root ${{ github.workspace }}/vcpkg/installed/ working-directory: windows - uses: actions-rs/toolchain@v1 with: @@ -117,7 +117,7 @@ jobs: LLVM_CONFIG_PATH: "C:\\Program Files\\LLVM\\bin\\llvm-config" CARGO_TARGET_DIR: "..\\..\\windows" BINDGEN_EXTRA_CLANG_ARGS: -fmsc-version=0 - VCPKG_ROOT: ${{ github.workspace }}/vcpkg + VCPKG_ROOT: ${{ github.workspace }}/vcpkg run: msbuild ccextractor.sln /p:Configuration=Debug-Full /p:Platform=x64 working-directory: ./windows - name: Display version information