This PR was triggered by @t0yv0 generated by the
update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt
repo, from commit
[b05dbe61dbea8fb6ea0c4cde662bde1101961819](b05dbe61db).
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@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
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 }}
|