diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..a8a2f2b --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,11 @@ +name: Publish new Release + +on: + release: + types: [published] + branches: [master] + +jobs: + release: + uses: evolution-gaming/scala-github-actions/.github/workflows/release.yml@v1 + secrets: inherit diff --git a/build.sbt b/build.sbt index 0177d56..e647fc3 100644 --- a/build.sbt +++ b/build.sbt @@ -3,13 +3,13 @@ name := "no-log4j-test" organization := "com.evolutiongaming" -homepage := Some(new URL("http://github.com/evolution-gaming/no-log4j-test")) +homepage := Some(url("https://github.com/evolution-gaming/no-log4j-test")) startYear := Some(2016) organizationName := "Evolution" -organizationHomepage := Some(url("http://evolution.com")) +organizationHomepage := Some(url("https://evolution.com")) scalaVersion := crossScalaVersions.value.head @@ -43,4 +43,8 @@ lazy val root = (project in file(".")) .configs(Log4jTest) .settings(inConfig(Log4jTest)(Defaults.testSettings): _*) -addCommandAlias("testAll", "test;log4j:test") \ No newline at end of file +addCommandAlias("testAll", "test;log4j:test") + +//addCommandAlias("check", "all versionPolicyCheck Compile/doc") +addCommandAlias("check", "show version") +addCommandAlias("build", "+all compile test")