Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Fix build dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrigis committed May 19, 2021
1 parent 735ef0e commit a3c98f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: rustup show

- name: Build
run: ./gradlew cargoBuild assembleRelease
run: ./gradlew assembleRelease

- name: Create release
uses: softprops/action-gh-release@v1
Expand Down
4 changes: 2 additions & 2 deletions artiwrapper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies {
}

tasks.whenTaskAdded { task ->
if ((task.name == 'javaPreCompileDebug' || task.name == 'javaPreCompileRelease')) {
if (task.name == 'mergeReleaseJniLibFolders') {
task.dependsOn 'cargoBuild'
}
}
}

0 comments on commit a3c98f4

Please sign in to comment.