-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1dbb5c1
commit 514a532
Showing
5 changed files
with
94 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -185,14 +185,38 @@ pub rsa4096 2018-08-22 [SC] | |
uid [ultimate] your name <[email protected]> | ||
sub rsa4096 2018-08-22 [E] | ||
$>LONG_ID=1234517530FB96F147C6A146A326F592D39AAAAA | ||
#send key to server | ||
$> gpg --keyserver keyserver.ubuntu.com --send-keys $LONG_ID | ||
$> gpg --keyserver hkp://keyserver.ubuntu.com --send-key $LONG_ID && \ | ||
gpg --keyserver hkp://pgp.mit.edu --send-key $LONG_ID && \ | ||
gpg --keyserver hkp://pool.sks-keyservers.net --send-key $LONG_ID | ||
``` | ||
|
||
# declare in travis (settings) PGP_SECRET in base64 (with no return carriage), dont put "" around the value ! | ||
2. Github secrets | ||
|
||
declare in github / repo / settings / secrets (new repository secret) | ||
|
||
``` | ||
# PGP_SECRET in base64 (with no return carriage), dont put "" around the value ! | ||
gpg --armor --export-secret-keys $LONG_ID | base64 -w0 | pbcopy | ||
# declare in travis (settings) PGP_PASSPHRASE in plain text | ||
# declare in github (settings) PGP_PASSPHRASE in plain text | ||
The randomly generated password you used to create a fresh gpg key | ||
# declare in github (settings) SONATYPE_PASSWORD in plain text | ||
The password you use to log into https://s01.oss.sonatype.org/ (or https://oss.sonatype.org/ if your Sonatype account was created before February 2021). | ||
***IMPORTANT*** Login s01.oss.sonatype.org and after profile, and select "User token" | ||
Alternatively, the password part of the user token if you generated one above. | ||
# declare in github (settings) SONATYPE_USERNAME in plain text | ||
***IMPORTANT*** Login s01.oss.sonatype.org, got to profile, and select "User token" | ||
Alternatively, the username part of the user token if you generated one above. | ||
``` | ||
|
||
2. create a tag and push | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") | ||
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") | ||
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.15.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.7.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0") |