Skip to content

Commit 491b553

Browse files
committed
fix(bootstrap): replace main class from dev.floofy.hazel.Main to dev.floofy.hazel.Bootstrap
1 parent 742723f commit 491b553

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
- name: Set tag
114114
run: |
115115
kubectl set image deployment/hazel hazel=auguwu/hazel:${{ steps.tag.outputs.tag }}
116-
kubectl set image deployment/maven maven=auguwu/hazel:${{ steps.tag.outputs.tag }}
116+
kubectl set image deployment/maven hazel=auguwu/hazel:${{ steps.tag.outputs.tag }}
117117
118118
- name: Deploy to the bot
119119
run: |

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ plugins {
5050
apply(plugin = "kotlinx-atomicfu")
5151

5252
val JAVA_VERSION = JavaVersion.VERSION_17
53-
val VERSION = Version(1, 1, 0, 0, ReleaseType.None)
53+
val VERSION = Version(1, 1, 1, 0, ReleaseType.None)
5454
val COMMIT_HASH by lazy {
5555
val cmd = "git rev-parse --short HEAD".split("\\s".toRegex())
5656
val proc = ProcessBuilder(cmd)
@@ -176,7 +176,7 @@ spotless {
176176
}
177177

178178
application {
179-
mainClass.set("dev.floofy.hazel.Main")
179+
mainClass.set("dev.floofy.hazel.Bootstrap")
180180
}
181181

182182
java {

0 commit comments

Comments
 (0)