1 parent 69ac132 commit 7bb2676Copy full SHA for 7bb2676
2 files changed
.github/workflows/build.yml
@@ -38,7 +38,7 @@ jobs:
38
run: |
39
cd processing
40
echo sdk.dir=/usr/local/lib/android/sdk/ >> local.properties
41
- ./gradlew core:extractAarJars dist
+ ./gradlew extractAarJars dist
42
# - name: Add artifact
43
# uses: actions/upload-artifact@v4
44
# with:
processing/core/build.gradle
@@ -64,7 +64,7 @@ tasks.named('compileJava').configure {
64
doFirst {
65
String[] deps = ["wearable.jar"]
66
deps.each { fn ->
67
- Files.copy(file("${rootDir}/core/build/libs/${fn}").toPath(),
+ Files.copy(file("${rootDir}/build/libs/${fn}").toPath(),
68
file("${rootDir}/mode/mode/${fn}").toPath(), REPLACE_EXISTING)
69
}
70
0 commit comments