From 672e5c87909a96c0eddaebfb4148b8bfc8743a22 Mon Sep 17 00:00:00 2001 From: Ben Plommer Date: Wed, 9 Mar 2022 16:42:54 +0000 Subject: [PATCH 1/2] Don't publish docs from 1.x branch --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1e02f7c5..96692761b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,4 +96,4 @@ jobs: GIT_DEPLOY_KEY: ${{ secrets.GIT_DEPLOY_KEY }} SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} PGP_SECRET: ${{ secrets.PGP_SECRET }} - run: sbt --client '++${{ matrix.scala }}; ci-release; docs/docusaurusPublishGhpages' \ No newline at end of file + run: sbt --client '++${{ matrix.scala }}; ci-release \ No newline at end of file From f784d6ace3b75d4faee2f4ca6a938a06fa86ba71 Mon Sep 17 00:00:00 2001 From: Ben Plommer Date: Wed, 9 Mar 2022 16:45:51 +0000 Subject: [PATCH 2/2] Fix workflow --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96692761b..32d207c7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,4 +96,4 @@ jobs: GIT_DEPLOY_KEY: ${{ secrets.GIT_DEPLOY_KEY }} SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} PGP_SECRET: ${{ secrets.PGP_SECRET }} - run: sbt --client '++${{ matrix.scala }}; ci-release \ No newline at end of file + run: sbt --client '++${{ matrix.scala }}; ci-release' \ No newline at end of file diff --git a/build.sbt b/build.sbt index 72a3c9502..7d82eb8ad 100644 --- a/build.sbt +++ b/build.sbt @@ -211,7 +211,7 @@ ThisBuild / githubWorkflowPublishTargetBranches := ThisBuild / githubWorkflowPublish := Seq( WorkflowStep.Sbt( - List("ci-release", "docs/docusaurusPublishGhpages"), + List("ci-release"), env = Map( "GIT_DEPLOY_KEY" -> "${{ secrets.GIT_DEPLOY_KEY }}", "PGP_PASSPHRASE" -> "${{ secrets.PGP_PASSPHRASE }}",