Skip to content

Commit 7dda775

Browse files
committed
add build directory
1 parent 4f8768e commit 7dda775

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,21 @@ jobs:
4949
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5050
with:
5151
name: windows-unit-test-artifacts
52-
path: |
53-
./.build/Windows/output/*.test.exe
52+
path: ./.build/Windows/output/*.test.exe
5453
retention-days: 1
5554
if-no-files-found: error
5655
- name: Upload testdata artifacts
5756
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5857
with:
5958
name: testdata-artifacts
60-
path: |
61-
./testdata/*
59+
path: ./testdata/*
60+
retention-days: 1
61+
if-no-files-found: error
62+
- name: Upload .build directory
63+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
64+
with:
65+
name: build-directory
66+
path: .build
6267
retention-days: 1
6368
if-no-files-found: error
6469

@@ -79,8 +84,7 @@ jobs:
7984
path: ./testdata/
8085
- run: dir .
8186
- run: dir testdata
82-
- run: |
83-
forfiles /S /M *.exe /C "cmd /c @file"
87+
- run: forfiles /S /M *.exe /C "cmd /c @file"
8488

8589
build-linux:
8690
name: Linux Host Build

0 commit comments

Comments
 (0)