Skip to content

Commit e5302ff

Browse files
committed
fix gh release action
1 parent d7e0bbf commit e5302ff

File tree

4 files changed

+1895
-29
lines changed

4 files changed

+1895
-29
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
distribution: ${{ env.JAVA_DISTRO }}
2828

2929
- name: Build
30-
run: ./gradlew test
30+
run: ./gradlew frontend:installDev frontend:build test
3131

3232
- name: Version
3333
id: vars

frontend/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ node{
77
version = '20.5.0'
88
}
99

10+
tasks.register('installDev', NpmTask){
11+
group 'build'
12+
args = ['i','npm-run-all','--save-dev']
13+
}
14+
15+
1016
tasks.register('build', NpmTask){
1117
group 'build'
1218
args = ['run', 'build']

0 commit comments

Comments
 (0)