diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8616e95..644ccef8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: run: sbt ++${{ matrix.scala }} scalafmtCheckAll test mimaReportBinaryIssues - name: Compress target directories - run: tar cf targets.tar plugin/target target codegen/target .protoc-gen/target runtime/target project/target + run: tar cf targets.tar plugin/target target .protoc-gen-fs2-grpc/target codegen/target runtime/target project/target - name: Upload target directories uses: actions/upload-artifact@v2 diff --git a/build.sbt b/build.sbt index 60c8e4ad..ece4acce 100644 --- a/build.sbt +++ b/build.sbt @@ -99,12 +99,11 @@ lazy val runtime = project Test / parallelExecution := false ) -lazy val protocGen = protocGenProject("protoc-gen", codegen) +lazy val protocGen = protocGenProject("protoc-gen-fs2-grpc", codegen) .settings( Compile / mainClass := Some(codegenFullName), scalaVersion := Scala212, githubWorkflowArtifactUpload := false, - publish / skip := true, mimaFailOnNoPrevious := false, mimaPreviousArtifacts := Set() )