Skip to content

Commit

Permalink
build: temporary snapshot repo (#4321)
Browse files Browse the repository at this point in the history
* must define something
  • Loading branch information
patriknw authored Oct 6, 2023
1 parent 91cb857 commit 007ecf2
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/release-train-issue-template.md
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ Key links:

- [ ] Check [API](https://doc.akka.io/api/akka-http/$VERSION$/) documentation
- [ ] Check [reference](https://doc.akka.io/docs/akka-http/$VERSION$/) documentation. Check that the reference docs were deployed and show a version warning (see section below on how to fix the version warning).
- [ ] Check the release on https://repo.akka.io/maven/com/typesafe/akka/akka-http-core_2.13/$VERSION$/
- [ ] Check the release on https://repo.akka.io/maven/com/typesafe/akka/akka-http-core_2.13/$VERSION$/akka-http-core_2.13-$VERSION$.pom

### When everything is on https://repo.akka.io/maven
- [ ] Log into `gustav.akka.io` as `akkarepo`
2 changes: 1 addition & 1 deletion project/Publish.scala
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ object Publish extends AutoPlugin {
beforePublishTask := beforePublish(isSnapshot.value),
publishSigned := publishSigned.dependsOn(beforePublishTask).value,
publishTo := (if (isSnapshot.value)
None // FIXME snapshot repo
Some(Resolver.file("file", target.value / "repository")) // FIXME snapshot repo
else
Some("Cloudsmith API".at("https://maven.cloudsmith.io/lightbend/akka/"))),
credentials ++= (if (isSnapshot.value) Seq[Credentials]() else cloudsmithCredentials(validate = false))

0 comments on commit 007ecf2

Please sign in to comment.