Update
This commit is contained in:
9
.github/actions/download-tfgen/action.yml
vendored
9
.github/actions/download-tfgen/action.yml
vendored
@@ -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 {} \;
|
||||
|
||||
4
.github/actions/upload-bin/action.yml
vendored
4
.github/actions/upload-bin/action.yml
vendored
@@ -6,10 +6,10 @@ runs:
|
||||
steps:
|
||||
- name: Tar provider binaries
|
||||
shell: bash
|
||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace }}/bin/ pulumi-resource-xyz pulumi-tfgen-xyz
|
||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace }}/bin/ pulumi-resource-incus pulumi-tfgen-incus
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
|
||||
with:
|
||||
name: xyz-provider.tar.gz
|
||||
name: incus-provider.tar.gz
|
||||
path: ${{ github.workspace }}/bin/provider.tar.gz
|
||||
retention-days: 30
|
||||
|
||||
Reference in New Issue
Block a user