Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMelody committed Sep 17, 2023
1 parent a7bd5e2 commit 41e0ca2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions gradle/release/lib_info.gralde
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class LibraryInfo {
String groupId
String expandable_text_artifactId
String lib_artifactId
Integer compileSdk
Integer targetSdk
Integer minSdk
Expand All @@ -20,7 +20,7 @@ def getLibraryInfo() {
def props = readLibraryProps()
LibraryInfo info = new LibraryInfo()

info.expandable_text_artifactId = props.get('LIB_ARTIFACT_ID') as String
info.lib_artifactId = props.get('LIB_ARTIFACT_ID') as String
info.groupId = props.get('GROUP_ID') as String

info.lib_versionName = props.get('LIB_VERSION_NAME') as String
Expand Down
6 changes: 3 additions & 3 deletions gradle/release/lib_publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ publishing {
publications {
nexus(MavenPublication) {
groupId rootProject.ext.libraryInfo.groupId
artifactId rootProject.ext.libraryInfo.expandable_text_artifactId
artifactId rootProject.ext.libraryInfo.lib_artifactId
version rootProject.ext.libraryInfo.lib_versionName

artifact bundleReleaseAar
artifact androidJavaDocJar
artifact androidSourcesJar

pom {
name = rootProject.ext.libraryInfo.groupId + ":" + rootProject.ext.libraryInfo.expandable_text_artifactId
description = "Compose可折叠/展开更多的Text可组合项"
name = rootProject.ext.libraryInfo.groupId + ":" + rootProject.ext.libraryInfo.lib_artifactId
description = "可控制Compose Dialog弹出的方向,支持上下左右,自由定制,真Dialog哦🔥"
url = "https://github.com/TheMelody/AnyPopDialog-Compose"
licenses {
license {
Expand Down

0 comments on commit 41e0ca2

Please sign in to comment.