Skip to content
This repository was archived by the owner on Jun 16, 2024. It is now read-only.

Commit 1edaa59

Browse files
committed
publish to github packages.
1 parent 3307441 commit 1edaa59

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

project/plugins.sbt

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
logLevel := Level.Warn
2+
3+
addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.3")

publish.sbt

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
githubOwner := "chryse-hdl"
2+
githubRepository := "chryse"
3+
githubTokenSource := TokenSource.GitConfig("github.token")
4+
5+
ThisBuild / scmInfo := Some(
6+
ScmInfo(
7+
url("https://github.com/chryse-hdl/chryse"),
8+
"scm:[email protected]/chryse-hdl/chryse.git",
9+
),
10+
)
11+
12+
ThisBuild / developers := List(
13+
Developer(
14+
id = "kivikakk",
15+
name = "Asherah Connor",
16+
email = "[email protected]",
17+
url = url("https://kivikakk.ee"),
18+
),
19+
)
20+
21+
ThisBuild / description := "Project framework for Chisel."
22+
ThisBuild / licenses := List(
23+
"Apache 2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"),
24+
)

0 commit comments

Comments
 (0)