File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 56
56
${{ steps.prepare-build.outputs.build-dir }}\php_mongodb.dll
57
57
${{ steps.prepare-build.outputs.build-dir }}\php_mongodb.pdb
58
58
59
+ - name : Copy DLL and PDB files to CWD
60
+ if : ${{ github.event_name == 'push' }}
61
+ run : |
62
+ cp .github/workflows/get-build-dir.bat .
63
+ for /F "usebackq tokens=*" %%i in (`get-build-dir.bat`) do set BUILD_DIR=%%i
64
+ echo BUILD_DIR=%BUILD_DIR%
65
+ cp %BUILD_DIR%\php_mongodb.dll .
66
+ cp %BUILD_DIR%\php_mongodb.pdb .
67
+
68
+ - name : Upload DLL and PDB files as build artifacts
69
+ if : ${{ github.event_name == 'push' }}
70
+ uses : actions/upload-artifact@v3
71
+ with :
72
+ name : php_mongodb-${{ github.sha }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }}
73
+ path : |
74
+ php_mongodb.dll
75
+ php_mongodb.pdb
76
+ retention-days : 3
77
+
59
78
test :
60
79
name : " Windows Tests"
61
80
runs-on : windows-2022
You can’t perform that action at this time.
0 commit comments