Skip to content

Commit

Permalink
fix last name
Browse files Browse the repository at this point in the history
  • Loading branch information
hagay3 committed Feb 27, 2024
1 parent 254ae39 commit e6dcc4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 20 deletions.
20 changes: 2 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,14 @@ jobs:
matrix:
os: [ubuntu-latest]
scala: [2.12.13, 2.13.12, 3.3.1]
java: [temurin@8, temurin@17]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Java (temurin@8)
if: matrix.java == 'temurin@8'
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: sbt

- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v3
Expand Down Expand Up @@ -71,7 +63,7 @@ jobs:
matrix:
os: [ubuntu-latest]
scala: [2.13.12]
java: [temurin@8]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
Expand All @@ -80,14 +72,6 @@ jobs:
fetch-depth: 0
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}

- name: Setup Java (temurin@8)
if: matrix.java == 'temurin@8'
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: sbt

- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v3
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ ThisBuild / scmInfo := Some(
)
)

ThisBuild / developers := List(Developer(id = "hagay3", name = "Hagai Hillel", email = "[email protected]", url = url("https://github.com/hagay3")))
ThisBuild / developers := List(Developer(id = "hagay3", name = "Hagai Ovadia", email = "[email protected]", url = url("https://github.com/hagay3")))

lazy val commonSettings = Seq(
organization := "io.github.hagay3",
Expand Down Expand Up @@ -139,7 +139,7 @@ inThisBuild(List(
params = Map("fetch-depth" -> "0", "token" -> "${{ secrets.PERSONAL_GITHUB_TOKEN }}"))) :::
WorkflowStep.SetupJava(githubWorkflowJavaVersions.value.toList) :::
githubWorkflowGeneratedCacheSteps.value.toList,
githubWorkflowJavaVersions += JavaSpec.temurin("17"),
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")),
githubWorkflowBuildMatrixFailFast := Some(false),
githubWorkflowScalaVersions := supportedScalaVersion,
githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))),
Expand Down

0 comments on commit e6dcc4e

Please sign in to comment.