From 790b29344a9fb5cc506a568d2d8e0f4513837654 Mon Sep 17 00:00:00 2001 From: Eduardo Trevisani <11429718+dutrevis@users.noreply.github.com> Date: Mon, 10 Jun 2024 19:49:43 -0300 Subject: [PATCH 1/2] fix: Added OSSRH host in build.sbt --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1bb34ba..d13f6a2 100644 --- a/build.sbt +++ b/build.sbt @@ -43,6 +43,8 @@ inThisBuild( email = "", url = url("https://github.com/dutrevis") ) - ) + ), + sonatypeCredentialHost := "s01.oss.sonatype.org", + sonatypeRepository := "https://s01.oss.sonatype.org/service/local" ) ) From 9fb1bbfd5b1e638789cac37487d3b1a27f2f305e Mon Sep 17 00:00:00 2001 From: Eduardo Trevisani <11429718+dutrevis@users.noreply.github.com> Date: Mon, 10 Jun 2024 19:50:23 -0300 Subject: [PATCH 2/2] chore: Added tags event trigger for GitHub Actions workflow --- .github/workflows/scala.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index e08282d..a0a129a 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -5,6 +5,8 @@ on: branches: - main - development + tags: + - "*" pull_request: branches: - main