From 6f4b899ceec9c400b495ecf3c288ec149c030a71 Mon Sep 17 00:00:00 2001 From: Matthieu Baechler Date: Wed, 14 Feb 2024 17:49:02 +0100 Subject: [PATCH] try to release 0.1.0 --- .github/workflows/ci.yml | 20 ++------------------ build.sbt | 7 ++----- 2 files changed, 4 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c16ad4..a5b2d5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [3.3.1] - java: [temurin@8, temurin@17] + java: [temurin@17] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -32,14 +32,6 @@ jobs: with: fetch-depth: 0 - - name: Setup Java (temurin@8) - if: matrix.java == 'temurin@8' - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 8 - cache: sbt - - name: Setup Java (temurin@17) if: matrix.java == 'temurin@17' uses: actions/setup-java@v4 @@ -71,7 +63,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [3.3.1] - java: [temurin@8] + java: [temurin@17] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -79,14 +71,6 @@ jobs: with: fetch-depth: 0 - - name: Setup Java (temurin@8) - if: matrix.java == 'temurin@8' - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 8 - cache: sbt - - name: Setup Java (temurin@17) if: matrix.java == 'temurin@17' uses: actions/setup-java@v4 diff --git a/build.sbt b/build.sbt index 0a506f8..45de497 100644 --- a/build.sbt +++ b/build.sbt @@ -1,10 +1,10 @@ ThisBuild / scalaVersion := "3.3.1" -ThisBuild / version := "0.1.0-SNAPSHOT" +ThisBuild / version := "0.1.0" ThisBuild / organization := "fr.baechler-craftsmanship" ThisBuild / organizationName := "chainsaw" -ThisBuild / githubWorkflowJavaVersions += JavaSpec.temurin("17") +ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")) inThisBuild(List( homepage := Some(url("https://github.com/mbaechler/chainsaw")), @@ -36,9 +36,6 @@ ThisBuild / githubWorkflowPublish := Seq( ) ) -ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org" -sonatypeRepository := "https://s01.oss.sonatype.org/service/local" - lazy val root = (project in file(".")) .settings( name := "chainsaw",