File tree Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -169,8 +169,8 @@ jobs:
169
169
- name : Publish to MavenCentral
170
170
run : make run-android-publish
171
171
env :
172
- OSSRH_USERNAME : ${{ secrets.OSSRH_USERNAME }}
173
- OSSRH_PASSWORD : ${{ secrets.OSSRH_PASSWORD }}
172
+ MAVEN_CENTRAL_USERNAME : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
173
+ MAVEN_CENTRAL_PASSWORD : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
174
174
SIGNING_KEY_ID : ${{ secrets.SIGNING_KEY_ID }}
175
175
SIGNING_PASSWORD : ${{ secrets.SIGNING_PASSWORD }}
176
176
SONATYPE_STAGING_PROFILE_ID : ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ MapLibre welcomes participation and contributions from everyone. Please read [`C
4
4
5
5
## main
6
6
7
+ ## 10.3.5
8
+
7
9
### ✨ Features and improvements
8
10
9
11
- Compile for Android with support for 16 KB page sizes ([ #3728 ] ( https://github.com/maplibre/maplibre-native/pull/3728 ) ).
Original file line number Diff line number Diff line change 1
- VERSION_NAME =10.3.4
1
+ VERSION_NAME =10.3.5
2
2
3
3
# Only build native dependencies for the current ABI
4
4
# See https://code.google.com/p/android/issues/detail?id=221098#c20
Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ nexusPublishing {
37
37
repositories {
38
38
sonatype {
39
39
stagingProfileId = sonatypeStagingProfileId
40
- username = ossrhUsername
41
- password = ossrhPassword
42
- nexusUrl. set(uri(" https://s01.oss .sonatype.org /service/local/" ))
43
- snapshotRepositoryUrl. set(uri(" https://s01.oss. sonatype.org/content/repositories/ snapshots/" ))
40
+ username = mavenCentralUsername
41
+ password = mavenCentralPassword
42
+ nexusUrl. set(uri(" https://ossrh-staging-api.central .sonatype.com /service/local/" ))
43
+ snapshotRepositoryUrl. set(uri(" https://central. sonatype.com/repository/maven- snapshots/" ))
44
44
}
45
45
}
46
46
}
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ ext["ossrhPassword"] = ''
6
6
ext[" sonatypeStagingProfileId" ] = ' '
7
7
8
8
// Use system environment variables
9
- ext[" ossrhUsername " ] = System . getenv(' OSSRH_USERNAME ' )
10
- ext[" ossrhPassword " ] = System . getenv(' OSSRH_PASSWORD ' )
9
+ ext[" mavenCentralUsername " ] = System . getenv(" MAVEN_CENTRAL_USERNAME " )
10
+ ext[" mavenCentralPassword " ] = System . getenv(" MAVEN_CENTRAL_PASSWORD " )
11
11
ext[" sonatypeStagingProfileId" ] = System . getenv(' SONATYPE_STAGING_PROFILE_ID' )
12
12
ext[" signing.keyId" ] = System . getenv(' SIGNING_KEY_ID' )
13
13
ext[" signing.password" ] = System . getenv(' SIGNING_PASSWORD' )
You can’t perform that action at this time.
0 commit comments