Skip to content

Commit 14db9d9

Browse files
fix github action
1 parent abd76c2 commit 14db9d9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-dlubal.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
- name: Build
2424
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
2525

26-
- name: Collect files
26+
- name: Remove unnecessary files
2727
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
28+
rmdir /s /q ${{env.BUILD_DIR}}/addons
29+
del ${{env.BUILD_DIR}}/*.pdb
30+
del ${{env.BUILD_DIR}}/dmake.*
3131
3232
- name: Upload build artifacts
3333
uses: actions/upload-artifact@v4
3434
with:
3535
name: build-win64
36-
path: ${{github.workspace}}/final
36+
path: ${{env.BUILD_DIR}}
3737

3838

0 commit comments

Comments
 (0)