Skip to content

Commit

Permalink
add release action
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-git committed Jul 18, 2024
1 parent 97e75be commit dd2caa8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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
10 changes: 7 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -43,4 +43,8 @@ lazy val root = (project in file("."))
.configs(Log4jTest)
.settings(inConfig(Log4jTest)(Defaults.testSettings): _*)

addCommandAlias("testAll", "test;log4j:test")
addCommandAlias("testAll", "test;log4j:test")

//addCommandAlias("check", "all versionPolicyCheck Compile/doc")
addCommandAlias("check", "show version")
addCommandAlias("build", "+all compile test")

0 comments on commit dd2caa8

Please sign in to comment.