Skip to content

Commit

Permalink
Fix CMake error when creating build folder w/ VSDK
Browse files Browse the repository at this point in the history
  • Loading branch information
capnkenny authored Dec 6, 2022
1 parent 4e6851c commit a1571bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/latest-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
id: cache-vulkan-macOS
uses: actions/cache@v3
with:
path: build/VulkanSDK
path: VulkanSDK
key: ${{ runner.os }}-vulkansdk-${{ matrix.vulkanVersion }}-${{ hashFiles('**/mvk_vulkan.h') }}
restore-keys: |
${{ runner.os }}-vulkansdk-${{ matrix.vulkanVersion }}
- name: Install Vulkan SDK (macOS)
if: "contains(matrix.os, 'macos') && steps.cache-vulkan-macOS.outputs.cache-hit != 'true'"
id: install-vulkan-macOS
run: scripts/ci-apple-installVulkanSDK.sh ${{ matrix.vulkanVersion }} $GITHUB_WORKSPACE/build/VulkanSDK
run: scripts/ci-apple-installVulkanSDK.sh ${{ matrix.vulkanVersion }} $GITHUB_WORKSPACE/VulkanSDK

- name: Install Vulkan SDK (Windows)
uses: humbletim/[email protected]
Expand All @@ -68,7 +68,7 @@ jobs:

- name: Restore Vulkan SDK env. variable (macOS)
if: "contains(matrix.os, 'macos') && steps.cache-vulkan-macOS.outputs.cache-hit == 'true'"
run: echo "VULKAN_SDK=$GITHUB_WORKSPACE/build/VulkanSDK/${{ matrix.vulkanVersion }}/macOS" >> $GITHUB_ENV
run: echo "VULKAN_SDK=$GITHUB_WORKSPACE/VulkanSDK/${{ matrix.vulkanVersion }}/macOS" >> $GITHUB_ENV

- name: Build - ${{ matrix.configuration }}
id: build
Expand Down

0 comments on commit a1571bf

Please sign in to comment.