File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
plugins/build-plugin/src/main/kotlin/com/powersync/compile Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 44
44
- name : Build and run tests with Gradle
45
45
run : |
46
46
./gradlew \
47
- -PGITHUB_PUBLISH_TOKEN=${{ secrets.GITHUB_TOKEN }} \
47
+ --scan \
48
48
${{ matrix.targets }}
49
49
shell : bash
50
50
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import org.gradle.api.tasks.Internal
8
8
import org.gradle.api.tasks.OutputFile
9
9
import org.gradle.api.tasks.TaskAction
10
10
import org.gradle.work.DisableCachingByDefault
11
+ import javax.inject.Inject
11
12
12
13
@DisableCachingByDefault(because = " not worth caching" )
13
14
abstract class CreateSqliteCInterop : DefaultTask () {
@@ -18,6 +19,7 @@ abstract class CreateSqliteCInterop: DefaultTask() {
18
19
abstract val definitionFile: RegularFileProperty
19
20
20
21
@get:Internal
22
+ @get:Inject
21
23
abstract val layout: ProjectLayout
22
24
23
25
@TaskAction
You can’t perform that action at this time.
0 commit comments