Skip to content

Commit

Permalink
fix: fix not building
Browse files Browse the repository at this point in the history
  • Loading branch information
duruer committed Mar 5, 2024
1 parent a6ecb88 commit fe603ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,14 @@ jobs:
with:
node-version: "lts/*"

- name: Yarn & Build UI
run: npm install -g yarn && yarn && yarn build

- name: Build with Gradle
uses: gradle/actions/setup-gradle@v3
with:
arguments: |
buildWithUI
build
-Pversion=${{ needs.get-next-version.outputs.new_tag_version }}
-PtimeStamp=${{ steps.time.outputs.time }}
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ dependencies {

tasks {
register("buildWithUI", Exec::class) {
commandLine("yarn")
commandLine("yarn", "build")
doFirst {
commandLine("yarn", "build")
}
finalizedBy("build")
}

Expand Down

0 comments on commit fe603ac

Please sign in to comment.