From c67040c4f5ca1ba3de8215bb786640a270d6b76d Mon Sep 17 00:00:00 2001 From: Naomi Plasterer Date: Thu, 21 Nov 2024 18:27:14 -0800 Subject: [PATCH] patch1 to match iOS --- .github/workflows/release.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30531646d..1da19508d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,24 +22,24 @@ jobs: uses: gradle/actions/setup-gradle@v3 - name: Run build with Gradle Wrapper run: ./gradlew build - - name: Tag version 0.14.1-patch + - name: Tag version 0.14.1-patch1 run: | - git tag 0.14.1-patch - git push origin 0.14.1-patch + git tag 0.14.1-patch1 + git push origin 0.14.1-patch1 - name: Create a GitHub release for version 0.14.1-patch uses: ncipollo/release-action@v1 with: - tag: "0.14.1-patch" - name: "Release 0.14.1-patch" + tag: "0.14.1-patch1" + name: "Release 0.14.1-patch1" body: "Patch release for inboxId and group fixes 0.14.1-patch" - name: Gradle Publish env: - RELEASE_VERSION: "0.14.1-patch" + RELEASE_VERSION: "0.14.1-patch1" MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} SIGN_KEY: ${{ secrets.OSSRH_GPG_SECRET_KEY }} SIGN_PASSWORD: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} MAVEN_PROFILE_ID: ${{ secrets.MAVEN_PROFILE_ID }} - run: ./gradlew publishToSonatype + run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository