Skip to content

Commit bbc1f0a

Browse files
committed
add release action
1 parent 529ad86 commit bbc1f0a

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Publish new Release
2+
3+
on:
4+
release:
5+
types: [published]
6+
branches: [master]
7+
8+
jobs:
9+
release:
10+
uses: evolution-gaming/scala-github-actions/.github/workflows/release.yml@v1
11+
secrets: inherit

build.sbt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ name := "retry"
44

55
organization := "com.evolutiongaming"
66

7-
homepage := Some(new URL("http://github.com/evolution-gaming/retry"))
7+
homepage := Some(url("https://github.com/evolution-gaming/retry"))
88

99
startYear := Some(2019)
1010

1111
organizationName := "Evolution"
1212

13-
organizationHomepage := Some(url("http://evolution.com"))
13+
organizationHomepage := Some(url("https://evolution.com"))
1414

1515
publishTo := Some(Resolver.evolutionReleases)
1616

@@ -30,4 +30,8 @@ releaseCrossBuild := true
3030

3131
Compile / doc / scalacOptions ++= Seq("-groups", "-implicits", "-no-link-warnings")
3232

33-
ThisBuild / versionScheme := Some("early-semver")
33+
ThisBuild / versionScheme := Some("early-semver")
34+
35+
//addCommandAlias("check", "all versionPolicyCheck Compile/doc")
36+
addCommandAlias("check", "show version")
37+
addCommandAlias("build", "+all compile test")

0 commit comments

Comments
 (0)