This commit is contained in:
2025-12-08 10:47:09 -05:00
parent 136b88ccdc
commit c4445aa92f
109 changed files with 9007 additions and 1219 deletions

View File

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