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 3761b44 commit 1a824c8Copy full SHA for 1a824c8
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