Skip to content

Commit

Permalink
Upgraded: sbt 1.3.8 => 1.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-lee committed Aug 16, 2020
1 parent bfafdb0 commit cda2f06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sbt-build-simple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else
echo "--------------------------------------------"
echo ""
CURRENT_BRANCH_NAME="${GITHUB_REF#refs/heads/}"
if [[ "$CURRENT_BRANCH_NAME" == "master" || "$CURRENT_BRANCH_NAME" == "release" ]]
if [[ "$CURRENT_BRANCH_NAME" == "main" || "$CURRENT_BRANCH_NAME" == "release" ]]
then
sbt -J-Xmx2048m "; ++ ${scala_version}!; clean; test; packagedArtifacts"
else
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sbt-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ else
echo ""
CURRENT_BRANCH_NAME="${GITHUB_REF#refs/heads/}"
export CI_BRANCH=$CURRENT_BRANCH_NAME
if [[ "$CURRENT_BRANCH_NAME" == "master" || "$CURRENT_BRANCH_NAME" == "release" ]]
if [[ "$CURRENT_BRANCH_NAME" == "main" || "$CURRENT_BRANCH_NAME" == "release" ]]
then
sbt -J-Xmx2048m "; ++ ${scala_version}!; clean; coverage; test; coverageReport; coverageAggregate"
sbt -J-Xmx2048m "; ++ ${scala_version}!; coveralls"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.8
sbt.version=1.3.13

0 comments on commit cda2f06

Please sign in to comment.