We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0d14e commit fc5093eCopy full SHA for fc5093e
.github/workflows/build.yml
@@ -6,9 +6,10 @@ on:
6
- main
7
tags:
8
- v*
9
+ pull_request:
10
11
jobs:
- java-sdk:
12
+ featinsight:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v4
@@ -34,7 +35,7 @@ jobs:
34
35
36
- name: build backend
37
run: |
- mvn clean build
38
+ mvn clean compile
39
40
- name: package
41
@@ -46,3 +47,10 @@ jobs:
46
47
name: feat-insight-jar
48
path: |
49
target/featinsight-*.jar
50
+
51
+ - name: Release
52
+ uses: softprops/action-gh-release@v2
53
+ if: startsWith(github.ref, 'refs/tags/v')
54
+ with:
55
+ files: |
56
+ target/featinsight-*.jar
0 commit comments