Skip to content

Commit

Permalink
try to release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaechler committed Feb 14, 2024
1 parent 4b736e5 commit 6f4b899
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 23 deletions.
20 changes: 2 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,14 @@ 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)
uses: actions/checkout@v4
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
Expand Down Expand Up @@ -71,22 +63,14 @@ 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)
uses: actions/checkout@v4
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
Expand Down
7 changes: 2 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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")),
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 6f4b899

Please sign in to comment.