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>
20 lines
697 B
YAML
20 lines
697 B
YAML
name: Download Provider Binary
|
|
description: Downloads the provider binary artifact and restores executable permissions
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Download provider
|
|
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
|
|
with:
|
|
name: pulumi-${{ env.PROVIDER }}-provider.tar.gz
|
|
path: ${{ github.workspace }}/bin
|
|
|
|
- name: UnTar provider binaries
|
|
shell: bash
|
|
run: tar -zxf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace}}/bin
|
|
|
|
- name: Restore Binary Permissions
|
|
shell: bash
|
|
run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print -exec chmod +x {} \;
|