Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b10b9c3

Browse filesBrowse files
committed
Fix CI build
Failed because everything in gradle.properties is only available locally
1 parent 217116b commit b10b9c3
Copy full SHA for b10b9c3

File tree

Expand file treeCollapse file tree

3 files changed

+5
-1
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+5
-1
lines changed

‎.github/workflows/build.yml

Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
- name: Grant execute permission for gradlew
2424
run: chmod +x gradlew
2525
- name: Build with Gradle
26-
run: ./gradlew build
26+
run: ./gradlew build -x signArchives

‎api/build.gradle

Copy file name to clipboardExpand all lines: api/build.gradle
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ dependencies {
99

1010
ext {
1111
libraryVersion = System.getProperty("libraryVersion")
12+
ossrhUsername = System.getProperty("ossrhUsername")
13+
ossrhPassword = System.getProperty("ossrhPassword")
1214
}
1315

1416
version = libraryVersion

‎client/build.gradle

Copy file name to clipboardExpand all lines: client/build.gradle
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ dependencies {
1111

1212
ext {
1313
libraryVersion = System.getProperty("libraryVersion")
14+
ossrhUsername = System.getProperty("ossrhUsername")
15+
ossrhPassword = System.getProperty("ossrhPassword")
1416
}
1517

1618
version = libraryVersion

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.