From 01dcc010912febd07c530c21a0442c0cdd6210eb Mon Sep 17 00:00:00 2001 From: Nate Anderson Date: Wed, 10 Jul 2024 15:37:55 -0700 Subject: [PATCH] chore: update examples to 0.2.0 Automatically release after pushing to sonatype instead of pushing but waiting for a manual release. --- .github/workflows/on-push-to-main-branch.yml | 4 +--- examples/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/on-push-to-main-branch.yml b/.github/workflows/on-push-to-main-branch.yml index 8c98d49..597346a 100644 --- a/.github/workflows/on-push-to-main-branch.yml +++ b/.github/workflows/on-push-to-main-branch.yml @@ -73,6 +73,4 @@ jobs: ORG_GRADLE_PROJECT_version: ${{ steps.semrel.outputs.version }} uses: gradle/gradle-build-action@v2.11.1 with: -# TODO: automatically release when release process is verified to work -# arguments: publishToSonatype closeAndReleaseStagingRepository - arguments: publishToSonatype closeSonatypeStagingRepository + arguments: publishToSonatype closeAndReleaseStagingRepository diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index 9595d53..ad2f184 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -10,7 +10,7 @@ repositories { } dependencies { - implementation("software.momento.kotlin:sdk:0.1.3") + implementation("software.momento.kotlin:sdk:0.2.0") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") }