action.yml 498 B

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