Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit e616d32

Browse files
authored
Merge pull request #5 from highmobility/ga-release
Ga release
2 parents 4d51b6b + b06a7e7 commit e616d32

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

.github/workflows/update-version.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,10 @@ jobs:
2323
- name: Grant execute permission for gradlew
2424
run: chmod +x gradlew
2525

26+
- name: setup git config
27+
run: |
28+
git config user.name "GitHub Actions Bot"
29+
git config user.email "<>"
30+
2631
- name: Create new tag
2732
run: ./gradlew :auto-api-java:release -Prelease.useAutomaticVersion=true

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [13.2.1]
3+
## [13.2.0]
44
- Update to latest [auto api branch](https://github.com/highmobility/auto-api/commit/06905522ba2c10c96bdd2899b4148ddc47a29a58)
55

66
## [13.1.1]

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,14 @@ ext {
3030
]
3131
}
3232

33-
allprojects {
33+
group = "com.high-mobility"
34+
35+
subprojects {
3436
repositories {
3537
mavenCentral()
3638
}
39+
40+
// nexus-publish plugin needs to be in root build.gradle 2 times
41+
// https://github.com/gradle-nexus/publish-plugin/issues/81
42+
group = "com.high-mobility"
3743
}

0 commit comments

Comments
 (0)