Skip to content

Commit

Permalink
Replicate fix from #1004
Browse files Browse the repository at this point in the history
e61ebb0
- Check out repo to fix setup-tools.
- pulumi/pulumi-package-publisher won't install its own tools.
  • Loading branch information
danielrbradley committed Jun 27, 2024
1 parent ddd8075 commit d7154ef
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,16 @@ jobs:
needs: publish
runs-on: #{{ .Config.runner.default }}#
steps:
- name: Checkout Repo
uses: #{{ .Config.actionVersions.checkout }}#
#{{- if .Config.checkoutSubmodules }}#
with:
submodules: #{{ .Config.checkoutSubmodules }}#
#{{- end }}#
- name: Setup tools
uses: ./.github/actions/setup-tools
with:
tools: pulumicli, go, node, dotnet, python, java
tools: pulumictl, pulumicli, go, node, dotnet, python, java
- name: Publish SDKs
uses: pulumi/[email protected]
with:
Expand Down
6 changes: 5 additions & 1 deletion provider-ci/test-providers/aws/.github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,14 @@ jobs:
needs: publish
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
submodules: true
- name: Setup tools
uses: ./.github/actions/setup-tools
with:
tools: pulumicli, go, node, dotnet, python, java
tools: pulumictl, pulumicli, go, node, dotnet, python, java
- name: Publish SDKs
uses: pulumi/[email protected]
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,12 @@ jobs:
needs: publish
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup tools
uses: ./.github/actions/setup-tools
with:
tools: pulumicli, go, node, dotnet, python, java
tools: pulumictl, pulumicli, go, node, dotnet, python, java
- name: Publish SDKs
uses: pulumi/[email protected]
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,12 @@ jobs:
needs: publish
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup tools
uses: ./.github/actions/setup-tools
with:
tools: pulumicli, go, node, dotnet, python, java
tools: pulumictl, pulumicli, go, node, dotnet, python, java
- name: Publish SDKs
uses: pulumi/[email protected]
with:
Expand Down

0 comments on commit d7154ef

Please sign in to comment.