ran setup.sh
This commit is contained in:
@@ -25,4 +25,4 @@ runs:
|
||||
pattern: schema-embed.*
|
||||
# Avoid creating directories for each artifact
|
||||
merge-multiple: true
|
||||
path: provider/cmd/pulumi-resource-xyz
|
||||
path: provider/cmd/pulumi-resource-incus
|
||||
|
||||
10
.github/actions/download-provider/action.yml
vendored
10
.github/actions/download-provider/action.yml
vendored
@@ -5,19 +5,19 @@ runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
||||
- name: Download pulumi-resource-xyz
|
||||
- name: Download pulumi-resource-incus
|
||||
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
|
||||
with:
|
||||
pattern: pulumi-resource-xyz-*-linux-amd64.tar.gz
|
||||
pattern: pulumi-resource-incus-*-linux-amd64.tar.gz
|
||||
path: ${{ github.workspace }}/bin
|
||||
merge-multiple: true
|
||||
|
||||
- name: Untar pulumi-resource-xyz
|
||||
- name: Untar pulumi-resource-incus
|
||||
shell: bash
|
||||
run: |
|
||||
tar -zxf ${{ github.workspace }}/bin/*amd64.tar.gz -C ${{ github.workspace}}/bin
|
||||
|
||||
- name: Mark pulumi-resource-xyz as executable
|
||||
- name: Mark pulumi-resource-incus as executable
|
||||
shell: bash
|
||||
run: |
|
||||
find ${{ github.workspace }} -name "pulumi-*-xyz" -print -exec chmod +x {} \;
|
||||
find ${{ github.workspace }} -name "pulumi-*-incus" -print -exec chmod +x {} \;
|
||||
|
||||
@@ -19,5 +19,5 @@ runs:
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
with:
|
||||
name: schema-embed.json
|
||||
path: provider/cmd/pulumi-resource-xyz/schema-embed.json
|
||||
path: provider/cmd/pulumi-resource-incus/schema-embed.json
|
||||
retention-days: 30
|
||||
|
||||
Reference in New Issue
Block a user