17 lines
507 B
YAML
17 lines
507 B
YAML
name: Download the tfgen binary
|
|
description: Downloads the tfgen binary to `bin/`.
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Download pulumi-tfgen-incus
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
|
with:
|
|
name: pulumi-tfgen-incus
|
|
path: ${{ github.workspace }}/bin
|
|
|
|
- name: Ensure pulumi-tfgen-incus is executable
|
|
shell: bash
|
|
run: |
|
|
find ${{ github.workspace }} -name "pulumi-*-incus" -print -exec chmod +x {} \;
|