@zio.dev/zio-sbt 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.md +6 -6
- package/package.json +1 -1
package/index.md
CHANGED
|
@@ -12,9 +12,9 @@ _ZIO SBT_ contains multiple sbt plugins that are useful for ZIO projects. It pro
|
|
|
12
12
|
Add the following lines to your `plugin.sbt` file:
|
|
13
13
|
|
|
14
14
|
```scala
|
|
15
|
-
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.4.
|
|
16
|
-
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.
|
|
17
|
-
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.
|
|
15
|
+
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.4.3")
|
|
16
|
+
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.3")
|
|
17
|
+
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.3")
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Then you can enable them by using the following code in your `build.sbt` file:
|
|
@@ -97,7 +97,7 @@ ZIO SBT CI plugin generates a default GitHub workflow that includes common CI ta
|
|
|
97
97
|
To use ZIO SBT CI plugin, add the following lines to your `plugins.sbt` file:
|
|
98
98
|
|
|
99
99
|
```scala
|
|
100
|
-
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.
|
|
100
|
+
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.3")
|
|
101
101
|
|
|
102
102
|
resolvers ++= Resolver.sonatypeOssRepos("public")
|
|
103
103
|
```
|
|
@@ -152,7 +152,7 @@ test:
|
|
|
152
152
|
- name: Cache Dependencies
|
|
153
153
|
uses: coursier/cache-action@v6
|
|
154
154
|
- name: Git Checkout
|
|
155
|
-
uses: actions/checkout@
|
|
155
|
+
uses: actions/checkout@v6
|
|
156
156
|
with:
|
|
157
157
|
fetch-depth: '0'
|
|
158
158
|
- name: Test
|
|
@@ -221,7 +221,7 @@ test:
|
|
|
221
221
|
- name: Cache Dependencies
|
|
222
222
|
uses: coursier/cache-action@v6
|
|
223
223
|
- name: Git Checkout
|
|
224
|
-
uses: actions/checkout@
|
|
224
|
+
uses: actions/checkout@v6
|
|
225
225
|
with:
|
|
226
226
|
fetch-depth: '0'
|
|
227
227
|
- name: Test
|
package/package.json
CHANGED