Skip to content

Commit 81ed5a4

Browse files
author
Levent KARAGÖL
committed
Github Action .yml files have been updated
1 parent cb5af12 commit 81ed5a4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/windows-x86_64.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,16 @@ jobs:
2929
& "C:\vcpkg\bootstrap-vcpkg.bat"
3030
echo "VCPKG_ROOT=C:\vcpkg" | Out-File -Append -Encoding ascii $env:GITHUB_ENV
3131
32-
- name: Integrate vcpkg and install dependencies
32+
- name: Integrate vcpkg
3333
run: |
3434
$env:VCPKG_ROOT = "C:\vcpkg"
3535
& "$env:VCPKG_ROOT\vcpkg" integrate install
36-
& "$env:VCPKG_ROOT\vcpkg" install --triplet x64-windows your-library-list
36+
37+
- name: Install dependencies
38+
run: |
39+
$env:VCPKG_ROOT = "C:\vcpkg"
40+
cd $env:GITHUB_WORKSPACE
41+
& "$env:VCPKG_ROOT\vcpkg" install
3742
3843
- name: Prepare build environment
3944
run: |

0 commit comments

Comments
 (0)