-
Notifications
You must be signed in to change notification settings - Fork 18
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
Showing
2 changed files
with
21 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,45 @@ | ||
2024-08 | ||
Making this work again. | ||
Trying to make this work again. | ||
|
||
Created new PGP: | ||
``` | ||
❯ gpg --list-keys | ||
[keyboxd] | ||
--------- | ||
pub ed25519 2024-08-23 [SC] [expires: 2027-08-23] | ||
61E2C83F241206B722B7A09E348B4CEE2DC47A1B | ||
pub ed25519 2024-08-23 [SC] [expires: ....] | ||
..... | ||
uid [ultimate] Central Repo <[email protected]> | ||
sub cv25519 2024-08-23 [E] [expires: 2027-08-23] | ||
sub cv25519 2024-08-23 [E] [expires: ...] | ||
``` | ||
|
||
Uploaded the key to the keyserver: | ||
Uploaded it: | ||
``` | ||
❯ gpg --keyserver keyserver.ubuntu.com --send-keys 348B4CEE2DC47A1B | ||
❯ gpg --keyserver keyserver.ubuntu.com --send-keys ..... | ||
``` | ||
Then, after a few moments, checked | ||
https://keyserver.ubuntu.com/pks/lookup?search=348B4CEE2DC47A1B&fingerprint=on&op=index | ||
and the key was there. | ||
|
||
Now, for the account, per https://central.sonatype.org/publish/generate-token/, I created a token, | ||
which I captured in `~/.sbt/1.0/sonatype.sbt`: | ||
|
||
```scala | ||
Per https://central.sonatype.org/publish/generate-token/, | ||
created a token, I captured in `~/.sbt/1.0/sonatype.sbt`: | ||
``` | ||
credentials += Credentials("Sonatype Nexus Repository Manager", | ||
"oss.sonatype.org", | ||
"the-token-user", | ||
"the-token-pw") | ||
``` | ||
|
||
Then: | ||
But no luck: | ||
``` | ||
sbt clean | ||
sbt +publishSigned | ||
sbt +sonatypeBundleRelease | ||
``` | ||
> +publishSigned | ||
> +sonatypeBundleRelease | ||
for not clear reason, getting "error [Sonatype] [STAGE_FAILURE] Failed to promote the repository") | ||
with the sonatype UI showing: | ||
``` | ||
typeId RepositoryWritePolicy | ||
failureMessage Artifact updating: Repository ='releases:Releases' does not allow updating artifact='/com/github/carueda/tscfg_3/1.1.1/tscfg_3-1.1.1.jar' | ||
``` | ||
`:(` | ||
|
||
Refs: | ||
|
||
- https://community.sonatype.com/t/401-content-access-is-protected-by-token-authentication-failure-while-performing-maven-release/12741/2 | ||
- https://central.sonatype.org/publish/generate-token/ | ||
|
||
|
||
---- | ||
(old notes) | ||
|
||
Refs: | ||
|
||
- https://www.scala-sbt.org/release/docs/Using-Sonatype.html | ||
- https://github.com/xerial/sbt-sonatype | ||
|
||
One-time steps: | ||
|
||
> set pgpReadOnly := false | ||
> pgp-cmd gen-key | ||
> pgp-cmd send-key [email protected] hkp://pool.sks-keyservers.net | ||
|
||
`~/.sbt/version/sonatype.sbt`: | ||
|
||
credentials += Credentials("Sonatype Nexus Repository Manager", | ||
"oss.sonatype.org", | ||
"<your username>", | ||
"<your password>") | ||
|
||
Then: | ||
|
||
> reload | ||
> clean | ||
> assembly | ||
> +package | ||
> +publishSigned | ||
> +sonatypeBundleRelease |