Skip to content

Commit fb27bb6

Browse files
feat: SKFP-905 deploy artefact to sonatype (#7)
1 parent 42ce27f commit fb27bb6

File tree

4 files changed

+90
-2
lines changed

4 files changed

+90
-2
lines changed
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Publish Artifact
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
release:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-java@v3
16+
with:
17+
distribution: 'adopt'
18+
java-version: '11'
19+
- name: Import GPG key
20+
id: import_gpg
21+
uses: crazy-max/ghaction-import-gpg@v5
22+
with:
23+
gpg_private_key: ${{ secrets.OSS_SONATYPE_GPG_PRIVATE_KEY }}
24+
passphrase: ${{ secrets.OSS_SONATYPE_GPG_PASSPHRASE }}
25+
git_user_signingkey: false
26+
27+
- name: Publish Artifact
28+
shell: bash
29+
env:
30+
tag: ${{ github.ref_name }}
31+
SONATYPE_REALM: $OSS_SONATYPE_REALM
32+
SONATYPE_HOST: $OSS_SONATYPE_HOST
33+
SONATYPE_USERNAME: ${{ secrets.OSS_SONATYPE_USERNAME }}
34+
SONATYPE_PASSWORD: ${{ secrets.OSS_SONATYPE_PASSWORD }}
35+
run: |
36+
export PGP_PASSPHRASE=${{ secrets.OSS_SONATYPE_GPG_PASSPHRASE }}
37+
# Remove the leading 'v' from the tag string
38+
export VERSION=${tag#v}
39+
sbt 'publishSigned; sonatypeRelease'

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.13
1+
sbt.version=1.6.2

project/plugins.sbt

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.6")
2-
2+
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
3+
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
4+
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15")
5+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")

publish.sbt

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
ThisBuild / sonatypeCredentialHost := sys.env.getOrElse("SONATYPE_HOST", "s01.oss.sonatype.org")
2+
ThisBuild / credentials += sys.env.get("SONATYPE_USERNAME").map(username => Credentials(sys.env("SONATYPE_REALM"), sys.env("SONATYPE_HOST"), username, sys.env("SONATYPE_PASSWORD"))).getOrElse(Credentials(Path.userHome / ".sbt" / "sonatype_credentials"))
3+
ThisBuild / releasePublishArtifactsAction := PgpKeys.publishSigned.value
4+
ThisBuild / fork := true
5+
ThisBuild / versionScheme := Some("semver-spec")
6+
ThisBuild / organization := "bio.ferlab"
7+
ThisBuild / organizationName := "ferlab"
8+
ThisBuild / organizationHomepage := Some(url("https://github.com/Ferlab-Ste-Justine"))
9+
10+
ThisBuild / scmInfo := Some(
11+
ScmInfo(
12+
url("https://github.com/Ferlab-Ste-Justine/obo-parser"),
13+
"scm:[email protected]:Ferlab-Ste-Justine/obo-parser.git"
14+
)
15+
)
16+
17+
ThisBuild / developers := List(
18+
Developer(
19+
id = "adipaul1981",
20+
name = "Adrian Paul",
21+
email = "[email protected]",
22+
url = url("https://github.com/adipaul1981")
23+
),
24+
Developer(
25+
id = "jecos",
26+
name = "Jeremy Costanza",
27+
email = "[email protected]",
28+
url = url("https://github.com/jecos")
29+
)
30+
)
31+
ThisBuild / description := "Library built on top of Apache Spark to speed-up data lakes development.."
32+
ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
33+
ThisBuild / homepage := Some(url("https://github.com/Ferlab-Ste-Justine/obo-parser"))
34+
35+
import sbt.url
36+
import xerial.sbt.Sonatype._
37+
38+
ThisBuild / sonatypeProjectHosting := Some(GitHubHosting("Ferlab Ste-Justine", "obo-parser", "[email protected]"))
39+
// Remove all additional repository other than Maven Central from POM
40+
ThisBuild / pomIncludeRepository := { _ => false }
41+
ThisBuild / publishTo := {
42+
val nexus = "https://s01.oss.sonatype.org/"
43+
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
44+
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
45+
}
46+
ThisBuild / publishMavenStyle := true

0 commit comments

Comments
 (0)