File tree 3 files changed +41
-2
lines changed
3 files changed +41
-2
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3
+
4
+ # This workflow uses actions that are not certified by GitHub.
5
+ # They are provided by a third-party and are governed by
6
+ # separate terms of service, privacy policy, and support
7
+ # documentation.
8
+
9
+ name : CI deploy maven package
10
+
11
+ on :
12
+ push :
13
+ branches :
14
+ - deploy
15
+
16
+ jobs :
17
+ build :
18
+
19
+ runs-on : ubuntu-latest
20
+
21
+ steps :
22
+ - uses : actions/checkout@v3
23
+ - name : Set up JDK 11
24
+ uses : actions/setup-java@v3
25
+ with :
26
+ java-version : ' 11'
27
+ distribution : ' corretto'
28
+ cache : maven
29
+ - name : Release Maven package
30
+ uses : samuelmeuli/action-maven-publish@v1
31
+ with :
32
+ gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
33
+ gpg_passphrase : ${{ secrets.PASSPHRASE }}
34
+ nexus_username : ${{ secrets.OSS_USERNAME }}
35
+ nexus_password : ${{ secrets.OSS_PASSWORD }}
36
+ maven_args : -P doRelease
Original file line number Diff line number Diff line change @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.1.0-sa.1] - 2023-09-16
11
+
10
12
### Added
11
13
12
14
- [ Sonar cloud workflow] ( .github/workflows/sonarcloud-maven.yml )
13
15
- [ Maven build workflow] ( .github/workflows/build_maven_package.yml )
16
+ - [ workflow deploy on branch deploy] ( .github/workflows/deploy_maven_package.yml )
14
17
- Sonar Cloud coverage badge
15
18
- keep a changelog badge
16
19
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >org.fugerit.java</groupId >
9
9
<artifactId >fj-doc</artifactId >
10
- <version >2 .0.2 </version >
10
+ <version >3 .0.4 </version >
11
11
<relativePath ></relativePath >
12
12
</parent >
13
13
14
14
<name >fj-doc-mod-openpdf</name >
15
15
<description >Fugerit DOC module for output in PDF, RTF and HTML using OpenPDF (Itext fork)</description >
16
- <version >1.0.1-SNAPSHOT </version >
16
+ <version >1.1.0-sa.1 </version >
17
17
18
18
<licenses >
19
19
<license >
You can’t perform that action at this time.
0 commit comments