File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 21
21
steps :
22
22
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23
23
with :
24
- ref : master
24
+ ref : 3.x
25
25
- name : Set up JDK
26
26
uses : actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
27
27
with :
30
30
cache : ' maven'
31
31
- name : Build and test
32
32
run : ./mvnw -B -ff -ntp clean verify
33
-
34
- # No recursive rebuild (yet?)
Original file line number Diff line number Diff line change @@ -2,16 +2,14 @@ name: Build and Deploy Snapshot
2
2
on :
3
3
push :
4
4
branches :
5
- - master
6
- - " 3.0"
5
+ - 3.x
7
6
- " 2.19"
8
7
paths-ignore :
9
8
- " README.md"
10
9
- " release-notes/*"
11
10
pull_request :
12
11
branches :
13
- - master
14
- - " 3.0"
12
+ - 3.x
15
13
- " 2.19"
16
14
paths-ignore :
17
15
- " README.md"
49
47
run : ./mvnw -B -q -ff -ntp verify
50
48
- name : Extract project Maven version
51
49
id : projectVersion
52
- run : echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.3.0 :evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT
50
+ run : echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.5.1 :evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT
53
51
- name : Deploy snapshot
54
52
if : ${{ matrix.release_build && github.event_name != 'pull_request' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }}
55
53
env :
You can’t perform that action at this time.
0 commit comments