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 53864e0 commit 3761b44Copy full SHA for 3761b44
action.yml
@@ -91,12 +91,12 @@ runs:
91
shell: bash
92
93
- name: Is Windows
94
- if: ${{ runner.os }} == "Windows"
+ if: ${{ runner.os }} == Windows
95
run: pip install -r ${{ github.action_path }}\requirements.txt
96
97
98
- name: Is Posix
99
- if: ${{ runner.os }} != "Windows"
+ if: ${{ runner.os }} != Windows
100
run: pip install -r ${{ github.action_path }}/requirements.txt
101
102
0 commit comments