We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd76c2 commit 14db9d9Copy full SHA for 14db9d9
1 file changed
.github/workflows/build-dlubal.yml
@@ -23,16 +23,16 @@ jobs:
23
- name: Build
24
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
25
26
- - name: Collect files
+ - name: Remove unnecessary files
27
run: |
28
- copy ${{env.BUILD_DIR}}/cfg/*.* ${{github.workspace}}/final/cfg
29
- copy ${{env.BUILD_DIR}}/platforms/*.* ${{github.workspace}}/final/platforms
30
- copy ${{env.BUILD_DIR}}/cppcheck.exe ${{github.workspace}}/final/cppcheck.exe
+ rmdir /s /q ${{env.BUILD_DIR}}/addons
+ del ${{env.BUILD_DIR}}/*.pdb
+ del ${{env.BUILD_DIR}}/dmake.*
31
32
- name: Upload build artifacts
33
uses: actions/upload-artifact@v4
34
with:
35
name: build-win64
36
- path: ${{github.workspace}}/final
+ path: ${{env.BUILD_DIR}}
37
38
0 commit comments