File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,13 @@ jobs:
24
24
uses : actions/setup-python@v2
25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
+ - name : Set temp directories on Windows
28
+ if : matrix.os == 'windows-latest'
29
+ run : |
30
+ echo "TMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
31
+ echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
27
32
- name : Install dependencies
28
33
run : |
29
- if [ "$RUNNER_OS" == "Windows" ]; then
30
- echo "TMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
31
- echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
32
- fi
33
34
git config --global user.email "[email protected] "
34
35
git config --global user.name "Your Name"
35
36
python -m pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments