We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85e49a8 commit ee14b51Copy full SHA for ee14b51
.github/workflows/release.yml
@@ -4,17 +4,18 @@ on:
4
tags: ["*"]
5
jobs:
6
publish:
7
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
8
+ timeout-minutes: 30
9
steps:
10
- uses: actions/checkout@v4
11
with:
12
fetch-depth: 0
13
- uses: actions/setup-java@v4
14
15
distribution: temurin
- java-version: 8
16
+ java-version: 11
17
cache: sbt
- - run: sbt -Djava.net.debug=all ci-release
18
+ - run: sbt -Djava.net.debug=all -Dsun.net.client.defaultReadTimeout=120000 -Dsun.net.client.defaultConnectTimeout=120000 -Dhttp.keepAlive=true -Dhttp.maxConnections=5 ci-release
19
env:
20
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
21
PGP_SECRET: ${{ secrets.PGP_SECRET }}
0 commit comments