[internal] Update GitHub Actions workflow files

This commit is contained in:
Pulumi Bot
2025-11-05 22:24:36 +00:00
parent faffc8cc45
commit fc0d9aa5f2
9 changed files with 165 additions and 619 deletions

20
.github/actions/download-sdk/action.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
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@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.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}}