Skip to content

Commit

Permalink
Extend the timeout for upload to Maven repositories to 10 minutes
Browse files Browse the repository at this point in the history
Also extend the setup timeout by 10 minutes.
  • Loading branch information
nuttycom committed Sep 13, 2023
1 parent 4d99ad1 commit 57f3b7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- name: Setup
id: setup
timeout-minutes: 40
timeout-minutes: 50
uses: ./.github/actions/setup
- name: Deploy to Maven Local
timeout-minutes: 25
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Upload Artifacts
if: ${{ always() }}
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
timeout-minutes: 3
timeout-minutes: 10
with:
name: Release binaries
path: ~/artifacts
4 changes: 2 additions & 2 deletions .github/workflows/deploy-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- name: Setup
id: setup
timeout-minutes: 40
timeout-minutes: 50
uses: ./.github/actions/setup
# While not strictly necessary, this sanity checks the build before attempting to upload.
# This adds minimal additional build time, since most of the work is cached and re-used
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Upload Artifacts
if: ${{ always() }}
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
timeout-minutes: 3
timeout-minutes: 10
with:
name: Snapshot binaries
path: ~/artifacts

0 comments on commit 57f3b7a

Please sign in to comment.