diff --git a/build.sbt b/build.sbt index 445fbffa..acacbce1 100644 --- a/build.sbt +++ b/build.sbt @@ -2,14 +2,25 @@ // sbt githubWorkflowGenerate // and check in the updates to github workflow yamls -// This is to trigger a snapshot build - // base version for assessing MIMA ThisBuild / tlBaseVersion := "0.8" // publish settings // artifacts now publish to s01.oss.sonatype.org, per: // https://github.com/erikerlandson/coulomb/issues/500 +// +// The sonatype publishing depends on 3 github action secrets, +// which are explained here: +// https://typelevel.org/sbt-typelevel/secrets.html +// +// On linux, you need to give a '-w 0' flag for base64: +// gpg --list-secret-keys +// gpg --armor --export-secret-keys $KEY_ID | base64 -w 0 +// +// As of June 2024, you also need to use the "api token" +// for sonatype, not the legacy user name and password, +// instructions here: +// https://typelevel.org/sbt-typelevel/secrets.html#sonatype-credentials ThisBuild / developers += tlGitHubDev("erikerlandson", "Erik Erlandson") ThisBuild / organization := "com.manyangled" ThisBuild / organizationName := "Erik Erlandson"