From c4fcfff9d90cb6d550c88b044697c8371385b3d9 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Fri, 1 Nov 2024 11:17:07 +0100 Subject: [PATCH 1/3] Disable automatic release in publish_release - now requires manual approval on https://oss.sonatype.org/. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ffa7e515b926..0ce6cf40814d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1093,7 +1093,7 @@ jobs: asset_content_type: text/plain - name: Publish Release - run: ./project/scripts/sbtPublish ";project scala3-bootstrapped ;publishSigned ;sonatypeBundleRelease" + run: ./project/scripts/sbtPublish ";project scala3-bootstrapped ;publishSigned ;sonatypeCentralUpload" open_issue_on_failure: @@ -1125,7 +1125,7 @@ jobs: needs: [build-msi-package] with: # Ensure that version starts with prefix 3. - # In the future it can be adapted to compare with with git tag or version set in the build.s + # In the future it can be adapted to compare with with git tag or version set in the build.s version: "3." java-version: 8 From 0b8aae7d8fd6c65e86e5ce32b55eb1e7f362b4f5 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Wed, 6 Nov 2024 11:12:04 +0100 Subject: [PATCH 2/3] Fix typo in ci.yaml Co-authored-by: Hamza Remmal --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0ce6cf40814d..91fac6006b6b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1125,7 +1125,7 @@ jobs: needs: [build-msi-package] with: # Ensure that version starts with prefix 3. - # In the future it can be adapted to compare with with git tag or version set in the build.s + # In the future it can be adapted to compare with with git tag or version set in the project/Build.scala version: "3." java-version: 8 From 14039aa4637b2be9f68899a582c86eeec5bc3bb2 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Wed, 6 Nov 2024 11:14:24 +0100 Subject: [PATCH 3/3] Use `sonatypeBundleUpload` instead of `sonatypeCentralUpload` Co-authored-by: Hamza Remmal --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 91fac6006b6b..5562423720d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1093,7 +1093,7 @@ jobs: asset_content_type: text/plain - name: Publish Release - run: ./project/scripts/sbtPublish ";project scala3-bootstrapped ;publishSigned ;sonatypeCentralUpload" + run: ./project/scripts/sbtPublish ";project scala3-bootstrapped ;publishSigned ;sonatypeBundleUpload" open_issue_on_failure: