Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit f600e1a

Browse files
committed
Attempt to reduce the excessive number of artifacts being uploaded in CI.
1 parent 5d9a03a commit f600e1a

File tree

3 files changed

+9
-18
lines changed

3 files changed

+9
-18
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ jobs:
4747
with:
4848
name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.os }}-${{ matrix.cfg }}
4949
path: |
50-
out/bin
51-
out/bld
52-
out/log
53-
out/pkg
54-
out/pub
55-
out/trx
50+
out
51+
!out/dep
52+
!out/obj

.github/workflows/package.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ jobs:
3737
with:
3838
name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }}-windows-2022-Debug
3939
path: |
40-
out/bin
41-
out/bld
42-
out/log
43-
out/pkg
44-
out/pub
45-
out/trx
40+
out
41+
!out/dep
42+
!out/obj

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ jobs:
3838
with:
3939
name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }}-windows-2022-Release
4040
path: |
41-
out/bin
42-
out/bld
43-
out/log
44-
out/pkg
45-
out/pub
46-
out/trx
41+
out
42+
!out/dep
43+
!out/obj

0 commit comments

Comments
 (0)