1name: "Linux - Setup Vulkan SDK"
 2description: "Setup Vulkan SDK for Linux"
 3inputs:
 4  path:
 5    description: "Installation path"
 6    required: true
 7  version:
 8    description: "Vulkan SDK version"
 9    required: true
10
11runs:
12  using: "composite"
13  steps:
14    - name: Setup Vulkan SDK
15      id: setup
16      uses: ./.github/actions/unarchive-tar
17      with:
18        url: https://sdk.lunarg.com/sdk/download/${{ inputs.version }}/linux/vulkan_sdk.tar.xz
19        path: ${{ inputs.path }}
20        strip: 1