Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CedNaru committed Oct 11, 2024
1 parent e222dc2 commit d88fba9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_jvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: jvm_godot-bootstrap_release
path: modules/kotlin_jvm/kt/godot-library/build/libs/godot-bootstrap.jar
path: modules/kotlin_jvm/kt/godot-library/godot-api-library/build/libs/godot-bootstrap.jar

- name: Upload entry-generator artifact
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: jvm_godot-bootstrap_debug
path: modules/kotlin_jvm/kt/godot-library/build/libs/godot-bootstrap.jar
path: modules/kotlin_jvm/kt/godot-library/godot-api-library/build/libs/godot-bootstrap.jar

- name: Verify ide plugin
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class SignalGenerationService : ISignalGenerationService {
)
.indent(" ")
.addImport(
"godot.extensions",
"godot.extension",
"connectThreadSafe"
)
.build()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@file:JvmName("NodeExt")
package godot.extensions
package godot.extension

import godot.Node
import godot.core.NodePath
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@file:JvmName("ObjectExt")

package godot.extensions
package godot.extension


import godot.Object
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@file:JvmName("PackedSceneExt")
package godot.extensions
package godot.extension


import godot.Node
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@file:JvmName("ResourceLoaderExt")
package godot.extensions
package godot.extension


import godot.Resource
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@file:JvmName("SignalExt")
package godot.extensions
package godot.extension

import godot.Node
import godot.core.Callable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import godot.core.PackedStringArray
import godot.core.PackedVector2Array
import godot.core.PackedVector3Array
import godot.Object
import godot.extensions.asStatic
import godot.extensions.loadAs
import godot.extension.asStatic
import godot.extension.loadAs
import godot.util.Internals

import godot.util.nullptr
Expand Down

0 comments on commit d88fba9

Please sign in to comment.