Skip to content

Commit a20d7be

Browse files
committed
Fix incorrect folder name under release
1 parent 79ca1d0 commit a20d7be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-uc2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
cmake --build . --config ${{ env.BUILD_TYPE }}
169169
cmake --install . --strip --config ${{ env.BUILD_TYPE }}
170170
ctest -VV -C ${{ env.BUILD_TYPE }}
171-
mv Debug instdir
171+
mv ${{ env.BUILD_TYPE }} instdir
172172
173173
- name: '🛠️ Win MSVC 32 setup'
174174
if: contains(matrix.config.name, 'MSVC 32')
@@ -195,7 +195,7 @@ jobs:
195195
cmake --build . --config ${{ env.BUILD_TYPE }}
196196
cmake --install . --strip --config ${{ env.BUILD_TYPE }}
197197
ctest -VV -C ${{ env.BUILD_TYPE }}
198-
mv Debug instdir
198+
mv ${{ env.BUILD_TYPE }} instdir
199199
200200
- name: '🚧 Win MINGW build'
201201
if: contains(matrix.config.mingw, 'MINGW')

0 commit comments

Comments
 (0)