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>
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@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
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 {} \;
|