File tree 2 files changed +16
-4
lines changed
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 12
12
pull_request :
13
13
branches :
14
14
- master
15
+ - " 3.0"
15
16
- " 2.14"
17
+ - " 2.13"
16
18
paths-ignore :
17
19
- " README.md"
18
20
- " release-notes/*"
@@ -33,16 +35,22 @@ jobs:
33
35
with :
34
36
distribution : ' temurin'
35
37
java-version : ${{ matrix.java_version }}
36
- cache : ' maven'
38
+ cache : ' maven'
37
39
server-id : sonatype-nexus-snapshots
38
40
server-username : CI_DEPLOY_USERNAME
39
41
server-password : CI_DEPLOY_PASSWORD
42
+ # See https://github.com/actions/setup-java/blob/v2/docs/advanced-usage.md#Publishing-using-Apache-
43
+ # gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
44
+ # gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
40
45
- name : Build
41
- run : ./mvnw -V -B -ff -ntp verify
46
+ run : ./mvnw -B -q -ff -ntp verify
47
+ - name : Extract project Maven version
48
+ id : projectVersion
49
+ run : echo ::set-output name=version::$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -DforceStdout -Dexpression=project.version -q)
42
50
- name : Deploy snapshot
43
- if : github.event_name != 'pull_request' && matrix.java_version == '8'
51
+ if : github.event_name != 'pull_request' && matrix.java_version == '8' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT')
44
52
env :
45
53
CI_DEPLOY_USERNAME : ${{ secrets.CI_DEPLOY_USERNAME }}
46
54
CI_DEPLOY_PASSWORD : ${{ secrets.CI_DEPLOY_PASSWORD }}
47
55
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
48
- run : ./mvnw -V -B -ff -DskipTests -ntp source:jar deploy
56
+ run : ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ Co-maintainers:
18
18
19
19
No changes since 2.13
20
20
21
+ 2.13 .3 (14 - May - 2022 )
22
+
23
+ No changes since 2.13 .2
24
+
21
25
2.13 .2 (17 - Mar - 2022 ) -- delayed due to compatibility issues , compared
22
26
to other components that were released on (06 - Mar - 2022 )
23
27
You can’t perform that action at this time.
0 commit comments