Skip to content

Commit

Permalink
Release all scala versions
Browse files Browse the repository at this point in the history
  • Loading branch information
guymers committed Mar 18, 2023
1 parent 2ae05c3 commit 1f0b509
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 30
name: Publish

steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -25,7 +26,7 @@ jobs:
extraKey: v1

- name: Release
run: sbt ci-release
run: sbt +ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
3 changes: 3 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def filterScalacConsoleOpts(options: Seq[String]) = {
def module(name: String) = Project(name, file(s"modules/$name"))
.settings(moduleName := s"foobie-$name")
.settings(commonSettings)
.settings(
mimaPreviousArtifacts := previousStableVersion.value.map(organization.value %% moduleName.value % _).toSet
)

lazy val foobie = project.in(file("."))
.settings(commonSettings)
Expand Down

0 comments on commit 1f0b509

Please sign in to comment.