We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2ddd7 commit be36ef2Copy full SHA for be36ef2
.github/workflows/build-and-release.yml
@@ -72,8 +72,8 @@ jobs:
72
GODOT_AAR_URL="https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}-stable/${GODOT_STEM}"
73
74
# Write build.gradle.kts expected by the project to expose the artifact
75
- echo 'configurations.maybeCreate("default")' > "${GODOT_LIB_DIR}/build.gradle.kts"'
76
- echo 'artifacts.add("default", file("REPLACE_ME"))' >> "${GODOT_LIB_DIR}/build.gradle.kts"
+ echo "configurations.maybeCreate(\"default\")" > "${GODOT_LIB_DIR}/build.gradle.kts"'
+ echo "artifacts.add("default", file(\"REPLACE_ME\"))" >> "${GODOT_LIB_DIR}/build.gradle.kts"
77
# Patch in the actual file name
78
sed -i "s#REPLACE_ME#${GODOT_STEM}#g" "${GODOT_LIB_DIR}/build.gradle.kts"
79
0 commit comments