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 9a3df60 commit cc44e75Copy full SHA for cc44e75
.github/actions/src/init/action.yml
@@ -30,7 +30,13 @@ runs:
30
using: composite
31
steps:
32
- name: Enable Corepack
33
- run: corepack enable ~/corepack
+ if: ${{ inputs.shell != 'pwsh' }}
34
+ run: corepack enable
35
+ shell: bash
36
+
37
+ - name: Enable Corepack (Powershell)
38
+ if: ${{ inputs.shell == 'pwsh' }}
39
+ run: corepack enable --install-directory ~/corepack
40
shell: ${{ inputs.shell }}
41
42
- name: Setup Aliases (Windows)
0 commit comments