Skip to content

Commit

Permalink
chore: raise timeout for artifact uploads to github
Browse files Browse the repository at this point in the history
  • Loading branch information
mhx committed Feb 3, 2025
1 parent fb09a55 commit 848ac52
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ jobs:
path: ${{ runner.temp }}\build\${{ env.binary_tarball }}
if-no-files-found: error
compression-level: 0
env:
ACTIONS_ARTIFACT_UPLOAD_TIMEOUT_MS: 1800000
if: env.do_install == 'true'

- name: Upload Universal Binary
Expand All @@ -101,6 +103,8 @@ jobs:
path: ${{ runner.temp }}\build\${{ env.universal_binary }}
if-no-files-found: error
compression-level: 0
env:
ACTIONS_ARTIFACT_UPLOAD_TIMEOUT_MS: 1800000
if: env.do_install == 'true'

package-source:
Expand Down Expand Up @@ -377,6 +381,8 @@ jobs:
path: ${{ runner.temp }}/artifacts/${{ env.binary_tarball }}
if-no-files-found: error
compression-level: 0
env:
ACTIONS_ARTIFACT_UPLOAD_TIMEOUT_MS: 1800000
if: ${{ endsWith(matrix.build_type, '-static') }}

- name: Upload Universal Binary
Expand All @@ -386,6 +392,8 @@ jobs:
path: ${{ runner.temp }}/artifacts/${{ env.universal_binary }}
if-no-files-found: error
compression-level: 0
env:
ACTIONS_ARTIFACT_UPLOAD_TIMEOUT_MS: 1800000
if: ${{ endsWith(matrix.build_type, '-static') }}

macos:
Expand Down

0 comments on commit 848ac52

Please sign in to comment.