Skip to content

Commit 5c6b9bf

Browse files
feat(api)!: Track the game id as part of the game state
1 parent 77a8f08 commit 5c6b9bf

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda # v3.4.2
3636

3737
- name: Build with Gradle Wrapper
38-
run: ./gradlew build publishToMavenLocal
38+
run: ./gradlew build
3939

4040
# NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html).
4141
# If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.

api/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ publishing {
112112
}
113113

114114
signing {
115-
useGpgCmd()
115+
if (project.hasProperty("useGpg")) {
116+
useGpgCmd()
117+
}
116118
sign(publishing.publications)
117119
}

app/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ publishing {
181181
}
182182

183183
signing {
184-
useGpgCmd()
184+
if (project.hasProperty("useGpg")) {
185+
useGpgCmd()
186+
}
185187
sign(publishing.publications)
186188
}

native/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ publishing {
142142
}
143143

144144
signing {
145-
useGpgCmd()
145+
if (project.hasProperty("useGpg")) {
146+
useGpgCmd()
147+
}
146148
sign(publishing.publications)
147149
}
Binary file not shown.

tcp-gameserver/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ publishing {
101101
}
102102

103103
signing {
104-
useGpgCmd()
104+
if (project.hasProperty("useGpg")) {
105+
useGpgCmd()
106+
}
105107
sign(publishing.publications)
106108
}

0 commit comments

Comments
 (0)