Skip to content

Commit

Permalink
Fix artifact name (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
mijicd authored Mar 26, 2021
1 parent c569a4b commit a1a4636
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
jobs:
lint:
runs-on: ubuntu-20.04
timeout-minutes: 30
strategy:
fail-fast: false
steps:
Expand All @@ -27,6 +28,7 @@ jobs:

build:
runs-on: ubuntu-20.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
Expand All @@ -44,6 +46,7 @@ jobs:

publish:
runs-on: ubuntu-20.04
timeout-minutes: 30
needs: [build,lint]
if: github.event_name != 'pull_request'
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
publish:
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- uses: olafurpg/setup-scala@v10
Expand Down
6 changes: 2 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,11 @@ lazy val root = project
name := "zio-schema",
skip in publish := true
)
.aggregate(
core
)
.aggregate(core)

lazy val core = project
.in(file("core"))
.settings(stdSettings("zio-schema-core"))
.settings(stdSettings("zio-schema"))
.settings(
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % zioVersion,
Expand Down

0 comments on commit a1a4636

Please sign in to comment.