This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit 1901fce160a37d0c537d831ce6f96e72bf7c9427. Co-authored-by: Pulumi Bot <bot@pulumi.com>
21 lines
645 B
YAML
21 lines
645 B
YAML
name: Download SDK
|
|
description: Downloads and extracts SDK artifacts for a specific language
|
|
|
|
inputs:
|
|
language:
|
|
description: 'The SDK language to download (nodejs, python, dotnet, java)'
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Download SDK
|
|
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
|
|
with:
|
|
name: ${{ inputs.language }}-sdk.tar.gz
|
|
path: ${{ github.workspace }}/sdk/
|
|
|
|
- name: UnTar SDK folder
|
|
shell: bash
|
|
run: tar -zxf ${{ github.workspace }}/sdk/${{ inputs.language }}.tar.gz -C ${{ github.workspace }}/sdk/${{ inputs.language }}
|