We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af50111 commit 622faffCopy full SHA for 622faff
.github/workflows/release.yml
@@ -82,16 +82,19 @@ jobs:
82
repo: pulumi/pulumictl
83
- name: Install Pulumi CLI
84
uses: pulumi/[email protected]
85
- - name: Setup Node
+ - if: ${{ matrix.language == 'nodejs'}}
86
+ name: Setup Node
87
uses: actions/setup-node@v1
88
with:
89
node-version: ${{matrix.nodeversion}}
90
registry-url: ${{env.NPM_REGISTRY_URL}}
- - name: Setup DotNet
91
+ - if: ${{ matrix.language == 'dotnet'}}
92
+ name: Setup DotNet
93
uses: actions/setup-dotnet@v4
94
95
dotnet-version: ${{matrix.dotnetversion}}
- - name: Setup Python
96
+ - if: ${{ matrix.language == 'python'}}
97
+ name: Setup Python
98
uses: actions/setup-python@v1
99
100
python-version: ${{matrix.pythonversion}}
0 commit comments