ran setup.sh
This commit is contained in:
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 {} \;
|
||||
|
||||
Reference in New Issue
Block a user