From e4b88f070145a4d3c84fc80bdedffbed96fd3941 Mon Sep 17 00:00:00 2001 From: Krzysztof Borowy <6444719+krizzu@users.noreply.github.com> Date: Thu, 21 May 2026 17:41:50 +0200 Subject: [PATCH 1/2] release shared-storage-android v1.0.0 --- RELEASING.md | 2 +- shared-storage/gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index fd80e43b..50d6e384 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -21,7 +21,7 @@ yarn test:format 1. Update `VERSION_NAME` in [gradle.properties](shared-storage/gradle.properties) 2. Commit changes ("release shared-storage-android vX.X.X") 3. Create PR, NO CHANGESET LOG, Merge. -4. Release artifact via `./gradlew publishToMavenCentral --no-configuration-cache` +4. Release artifact via `./gradlew :shared-storage:publishToMavenCentral --no-configuration-cache` 5. Publish deployment on [Sonatype Central](https://central.sonatype.com/publishing/deployments) ## Release new Async Storage version diff --git a/shared-storage/gradle.properties b/shared-storage/gradle.properties index a89af451..2e88980a 100644 --- a/shared-storage/gradle.properties +++ b/shared-storage/gradle.properties @@ -1,5 +1,5 @@ # Publishing -VERSION_NAME=0.0.1 +VERSION_NAME=1.0.0 SONATYPE_HOST=CENTRAL_PORTAL RELEASE_SIGNING_ENABLED=true From 2cb9cf500262fd8051a11ba2f79833daad238658 Mon Sep 17 00:00:00 2001 From: Krzysztof Borowy <6444719+krizzu@users.noreply.github.com> Date: Thu, 21 May 2026 17:45:05 +0200 Subject: [PATCH 2/2] fix actions --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2308b404..d04405b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: release: runs-on: ubuntu-latest - needs: [check-release, build-android, build-apple] + needs: [check-release, build-apple] if: "!failure() && !cancelled()" steps: - name: Checkout