Skip to content

Commit

Permalink
fix(bootstrap): replace main class from dev.floofy.hazel.Main to `d…
Browse files Browse the repository at this point in the history
…ev.floofy.hazel.Bootstrap`
  • Loading branch information
auguwu committed May 1, 2022
1 parent 742723f commit 491b553
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Set tag
run: |
kubectl set image deployment/hazel hazel=auguwu/hazel:${{ steps.tag.outputs.tag }}
kubectl set image deployment/maven maven=auguwu/hazel:${{ steps.tag.outputs.tag }}
kubectl set image deployment/maven hazel=auguwu/hazel:${{ steps.tag.outputs.tag }}
- name: Deploy to the bot
run: |
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ plugins {
apply(plugin = "kotlinx-atomicfu")

val JAVA_VERSION = JavaVersion.VERSION_17
val VERSION = Version(1, 1, 0, 0, ReleaseType.None)
val VERSION = Version(1, 1, 1, 0, ReleaseType.None)
val COMMIT_HASH by lazy {
val cmd = "git rev-parse --short HEAD".split("\\s".toRegex())
val proc = ProcessBuilder(cmd)
Expand Down Expand Up @@ -176,7 +176,7 @@ spotless {
}

application {
mainClass.set("dev.floofy.hazel.Main")
mainClass.set("dev.floofy.hazel.Bootstrap")
}

java {
Expand Down

0 comments on commit 491b553

Please sign in to comment.