initial commit
This commit is contained in:
17
.github/actions/download-tfgen/action.yml
vendored
Normal file
17
.github/actions/download-tfgen/action.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Download the tfgen binary
|
||||
description: Downloads the tfgen binary to `bin/`.
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
||||
- name: Download pulumi-tfgen-xyz
|
||||
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
||||
with:
|
||||
name: pulumi-tfgen-xyz
|
||||
path: ${{ github.workspace }}/bin
|
||||
|
||||
- name: Ensure pulumi-tfgen-xyz is executable
|
||||
shell: bash
|
||||
run: |
|
||||
find ${{ github.workspace }} -name "pulumi-*-xyz" -print -exec chmod +x {} \;
|
||||
Reference in New Issue
Block a user