Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NayamAmarshe authored Jan 30, 2024
1 parent 59acbfa commit aba3c37
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
id: cache-vulkansdk
uses: actions/cache@v1
with:
path: "{{ VK_VERSION }}"
key: "vulkansdk-linux-x86_64-{{VK_VERSION}}"
path: vulkansdk-linux-x86_64-${{ VK_VERSION }}
key: vulkansdk-linux-x86_64-${{VK_VERSION}}
- name: vulkansdk
if: steps.cache-vulkansdk.outputs.cache-hit != 'true'
run: |
wget https://sdk.lunarg.com/sdk/download/$VK_VERSION/linux/vulkansdk-linux-x86_64-$VK_VERSION.tar.xz?Human=true -O vulkansdk-linux-x86_64-$VK_VERSION.tar.xz
tar -xf vulkansdk-linux-x86_64-$VK_VERSION.tar.xz
rm -rf $VK_VERSION/source $VK_VERSION/samples
find $VK_VERSION -type f | grep -v -E 'vulkan|glslang' | xargs rm
rm -rf vulkansdk-linux-x86_64-$VK_VERSION/source vulkansdk-linux-x86_64-$VK_VERSION/samples
find vulkansdk-linux-x86_64-$VK_VERSION -type f | grep -v -E 'vulkan|glslang' | xargs rm
- name: build
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
Expand Down Expand Up @@ -94,8 +94,8 @@ jobs:
id: cache-vulkansdk
uses: actions/cache@v1
with:
path: "{{ VULKAN_SDK }}"
key: vulkansdk-macos-{{VK_VERSION}}
path: ${{ VULKAN_SDK }}
key: ${{ VULKAN_SDK }}
- name: vulkansdk
if: steps.cache-vulkansdk.outputs.cache-hit != 'true'
run: |
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
uses: actions/cache@v1
with:
path: "VulkanSDK"
key: VulkanSDK-{{ VK_VERSION }}-Installer
key: VulkanSDK-${{ VK_VERSION }}-Installer
- name: vulkansdk
if: steps.cache-vulkansdk.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit aba3c37

Please sign in to comment.