Skip to content

Commit b899722

Browse files
committed
[1.1.0-sa.1] - 2023-09-16
1 parent f5d42ac commit b899722

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.1.0-sa.1] - 2023-09-16
11+
1012
### Added
1113

1214
- [Sonar cloud workflow](.github/workflows/sonarcloud-maven.yml)
1315
- [Maven build workflow](.github/workflows/build_maven_package.yml)
16+
- [workflow deploy on branch deploy](.github/workflows/deploy_maven_package.yml)
1417
- Sonar Cloud coverage badge
1518
- keep a changelog badge
1619

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>2.0.2</version>
10+
<version>3.0.4</version>
1111
<relativePath></relativePath>
1212
</parent>
1313

1414
<name>fj-doc-mod-openpdf</name>
1515
<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>
1717

1818
<licenses>
1919
<license>

0 commit comments

Comments
 (0)