We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30746e8 commit 769f03bCopy full SHA for 769f03b
1 file changed
.github/workflows/windows.yaml
@@ -7,7 +7,7 @@ on:
7
8
env:
9
VMA_VULKAN_VERSION: "1.3.283.0"
10
- VMA_VULKAN_SDK_PATH: "$GITHUB_WORKSPACE/../vulkan_sdk/"
+ VMA_VULKAN_SDK_PATH: "$GITHUB_WORKSPACE/vulkan_sdk" # Move SDK to within the workspace
11
12
jobs:
13
windows:
@@ -39,7 +39,7 @@ jobs:
39
id: cache-vulkan
40
uses: actions/cache@v4
41
with:
42
- path: ${{ env.VMA_VULKAN_SDK_PATH }} # Use absolute path for the cache
+ path: ${{ env.VMA_VULKAN_SDK_PATH }} # Ensure path is inside the workspace
43
key: vulkan-sdk-${{ env.VMA_VULKAN_VERSION }}
44
45
- name: Prepare Vulkan SDK
0 commit comments