Skip to content

Commit

Permalink
Attempted temporary fix for CI release failure (xerial/sbt-sonatype#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
Basil Mironenko committed Oct 21, 2024
1 parent fbac0f8 commit 365105b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ jobs:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
run: sbt ci-release
run: sbt -Dsun.net.client.defaultReadTimeout=60000 ci-release
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ThisBuild / githubWorkflowTargetTags ++= Seq("v*")

ThisBuild / githubWorkflowPublish := Seq(
WorkflowStep.Sbt(
List("ci-release"),
List("-Dsun.net.client.defaultReadTimeout=60000", "ci-release"),
env = Map(
"PGP_PASSPHRASE" -> "${{ secrets.PGP_PASSPHRASE }}",
"PGP_SECRET" -> "${{ secrets.PGP_SECRET }}",
Expand Down

0 comments on commit 365105b

Please sign in to comment.