Files
pulumi-incus/.github/actions/download-sdk/action.yml
2025-04-18 13:26:52 -07:00

20 lines
633 B
YAML

name: Download SDK asset
description: Restores the SDK asset for a language.
inputs:
language:
required: true
description: One of nodejs, python, dotnet, go, java
runs:
using: "composite"
steps:
- name: Download ${{ inputs.language }} SDK
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
with:
name: ${{ inputs.language }}-sdk.tar.gz
path: ${{ github.workspace}}/sdk/
- name: Uncompress SDK folder
shell: bash
run: tar -zxf ${{ github.workspace }}/sdk/${{ inputs.language }}.tar.gz -C ${{ github.workspace }}/sdk/${{ inputs.language }}