Skip to content

Commit

Permalink
#82: Setup riderRD dependency before running dotnet build
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Oct 8, 2022
1 parent 6cd7478 commit 64efe7d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/prepare-build-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,9 @@ runs:
with:
cache-disabled: true
arguments: rdgen

- name: 🏗 Prepare dependencies
uses: gradle/gradle-build-action@v2
with:
cache-disabled: true
arguments: setupDependencies
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ task setBuildTool {

task compileDotNet {
dependsOn setBuildTool
dependsOn setupDependencies

doLast {
def arguments = setBuildTool.args.clone()
arguments << "/t:Restore;Rebuild"
Expand Down

0 comments on commit 64efe7d

Please sign in to comment.