There was an error while loading. Please reload this page.
1 parent a800a68 commit 5eb9983Copy full SHA for 5eb9983
1 file changed
action.yml
@@ -5,7 +5,11 @@ runs:
5
steps:
6
# https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#runsstepsrun
7
- run: $GITHUB_ACTION_PATH/install.sh
8
+ if: runner.os != 'windows'
9
shell: bash
10
+ - run: $GITHUB_ACTION_PATH/install.ps1
11
+ if: runner.os == 'windows'
12
+ shell: powershell
13
- name: add to path if windows
14
if: runner.os == 'windows'
15
shell: powershell
0 commit comments