File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 87
87
- windows-latest
88
88
steps :
89
89
- uses : actions/checkout@v5
90
+ - name : ' Windows only, set TEMP to the same drive'
91
+ if : ${{ matrix.os == 'windows-latest' }}
92
+ # temporary waiting for https://github.com/parcel-bundler/parcel/pull/10095 to fix
93
+ run : |
94
+ mkdir "D:\\Temp"
95
+ echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
90
96
91
97
- name : Bootstrap Action Workspace
92
98
id : bootstrap
Original file line number Diff line number Diff line change @@ -147,6 +147,12 @@ jobs:
147
147
- uses : actions/checkout@v5
148
148
with :
149
149
ref : ${{ needs.release-drafter.outputs.tag_name }}
150
+ - name : ' Windows only, set TEMP to the same drive'
151
+ if : ${{ matrix.os == 'windows-latest' }}
152
+ # temporary waiting for https://github.com/parcel-bundler/parcel/pull/10095 to fix
153
+ run : |
154
+ mkdir "D:\\Temp"
155
+ echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
150
156
151
157
- name : Bootstrap Action Workspace
152
158
id : bootstrap
You can’t perform that action at this time.
0 commit comments