Skip to content

Commit 6adde0a

Browse files
committed
ci: fix vcpkg git cwd
1 parent 71d8757 commit 6adde0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/prepare-vcpkg/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ runs:
7777
# Especially on emulated architectures, this reduces initial build time by ~1h.
7878
- name: Only create `Release` builds of dependencies
7979
shell: bash
80+
working-directory: libdave/cpp/vcpkg
8081
run: |
81-
for f in $(find ./libdave/cpp/vcpkg/triplets -name '*.cmake'); do
82+
for f in $(find ./triplets -name '*.cmake'); do
8283
echo "set(VCPKG_BUILD_TYPE release)" >> "$f"
8384
git update-index --assume-unchanged "$f"
8485
done

0 commit comments

Comments
 (0)