Aceradio/.github/actions/linux-setup-vulkan/action.yml
Carl Philipp Klemm b3185e4bc5
Some checks are pending
Build eismuliplexer for linux / Build (push) Waiting to run
CI: Build vulkan version
2026-04-15 13:17:47 +02:00

20 lines
498 B
YAML

name: "Linux - Setup Vulkan SDK"
description: "Setup Vulkan SDK for Linux"
inputs:
path:
description: "Installation path"
required: true
version:
description: "Vulkan SDK version"
required: true
runs:
using: "composite"
steps:
- name: Setup Vulkan SDK
id: setup
uses: ./.github/actions/unarchive-tar
with:
url: https://sdk.lunarg.com/sdk/download/${{ inputs.version }}/linux/vulkan_sdk.tar.xz
path: ${{ inputs.path }}
strip: 1