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

Commit 3797e64

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

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ jobs:
4848
name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.os }}-${{ matrix.cfg }}
4949
path: |
5050
out
51-
!out/dep
52-
!out/obj
51+
!out/dep/**/*
52+
!out/obj/**/*

.github/workflows/package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ jobs:
3838
name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }}-windows-2022-Debug
3939
path: |
4040
out
41-
!out/dep
42-
!out/obj
41+
!out/dep/**/*
42+
!out/obj/**/*

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ jobs:
3939
name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }}-windows-2022-Release
4040
path: |
4141
out
42-
!out/dep
43-
!out/obj
42+
!out/dep/**/*
43+
!out/obj/**/*

0 commit comments

Comments
 (0)