Skip to content

Commit 776f26b

Browse files
committed
chore: try limiting artifact upload concurrency
See actions/upload-artifact#623
1 parent 7944945 commit 776f26b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

+8
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ jobs:
9292
path: ${{ runner.temp }}\build\${{ env.binary_tarball }}
9393
if-no-files-found: error
9494
compression-level: 0
95+
env:
96+
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5
9597
if: env.do_install == 'true'
9698

9799
- name: Upload Universal Binary
@@ -101,6 +103,8 @@ jobs:
101103
path: ${{ runner.temp }}\build\${{ env.universal_binary }}
102104
if-no-files-found: error
103105
compression-level: 0
106+
env:
107+
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5
104108
if: env.do_install == 'true'
105109

106110
package-source:
@@ -377,6 +381,8 @@ jobs:
377381
path: ${{ runner.temp }}/artifacts/${{ env.binary_tarball }}
378382
if-no-files-found: error
379383
compression-level: 0
384+
env:
385+
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5
380386
if: ${{ endsWith(matrix.build_type, '-static') }}
381387

382388
- name: Upload Universal Binary
@@ -386,6 +392,8 @@ jobs:
386392
path: ${{ runner.temp }}/artifacts/${{ env.universal_binary }}
387393
if-no-files-found: error
388394
compression-level: 0
395+
env:
396+
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 5
389397
if: ${{ endsWith(matrix.build_type, '-static') }}
390398

391399
macos:

0 commit comments

Comments
 (0)