Skip to content

Commit 11cd8f6

Browse files
committed
chore: add region tags
1 parent 99d0e1f commit 11cd8f6

File tree

7 files changed

+9
-113
lines changed

7 files changed

+9
-113
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,6 @@ jobs:
2222
gpg --quiet --output $GITHUB_WORKSPACE/release.gpg --dearmor ./release.asc
2323
2424
echo "Build and publish"
25-
# Inject secrets into gradle.properties
26-
# Note: It is often safer to pass these as ./gradlew -P... properties or env vars if the build script supports it,
27-
# but we are replicating the previous behavior of sed replacements to minimize build script changes unless necessary.
28-
# However, typical best practice is environment variables.
29-
# Let's check how build.gradle.kts and gradle.properties interact.
30-
# The previous workflow used sed to replace values in gradle.properties.
31-
# We will replicate that for stability.
32-
3325
sed -i -e "s,mavenCentralUsername=,mavenCentralUsername=$SONATYPE_TOKEN_USERNAME,g" gradle.properties
3426
SONATYPE_TOKEN_PASSWORD_ESCAPED=$(printf '%s\n' "$SONATYPE_TOKEN_PASSWORD" | sed -e 's/[\/&]/\\&/g')
3527
sed -i -e "s,mavenCentralPassword=,mavenCentralPassword=$SONATYPE_TOKEN_PASSWORD_ESCAPED,g" gradle.properties

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
release-please:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: google-github-actions/release-please-action@v4
16+
- uses: googleapis/release-please-action@v4
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
config-file: release-please-config.json

.github/workflows/release.yml

Lines changed: 0 additions & 73 deletions
This file was deleted.

.releaserc

Lines changed: 0 additions & 25 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,18 @@ You no longer need to specify the Maps SDK for Android or its Utility Library as
2929

3030
```groovy
3131
dependencies {
32+
// {x-release-please-start-version}
3233
implementation 'com.google.maps.android:maps-compose:6.12.2'
33-
34+
// {x-release-please-end}
3435
// Optionally, you can include the Compose utils library for Clustering,
3536
// Street View metadata checks, etc.
37+
// {x-release-please-start-version}
3638
implementation 'com.google.maps.android:maps-compose-utils:6.12.2'
37-
39+
// {x-release-please-end}
3840
// Optionally, you can include the widgets library for ScaleBar, etc.
41+
// {x-release-please-start-version}
3942
implementation 'com.google.maps.android:maps-compose-widgets:6.12.2'
43+
// {x-release-please-end}
4044
}
4145
```
4246

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,7 @@ val projectArtifactId by extra { project: Project ->
3232

3333
allprojects {
3434
group = "com.google.maps.android"
35+
// {x-release-please-start-version}
3536
version = "6.12.2"
37+
// {x-release-please-end}
3638
}

gradle.properties

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,3 @@ android.nonTransitiveRClass=false
3434
android.nonFinalResIds=false
3535

3636
android.experimental.enableScreenshotTest=true
37-
38-
# Add a property to enable automatic release to Maven Central (optional, but good for CI)
39-
# If true, publishToMavenCentral will also close and release the staging repository
40-
mavenCentralAutomaticRelease=false

0 commit comments

Comments
 (0)