Skip to content

Commit

Permalink
[1.1.0-sa.1] - 2023-09-16
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Sep 16, 2023
1 parent f5d42ac commit b899722
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/deploy_maven_package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: CI deploy maven package

on:
push:
branches:
- deploy

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'corretto'
cache: maven
- name: Release Maven package
uses: samuelmeuli/action-maven-publish@v1
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg_passphrase: ${{ secrets.PASSPHRASE }}
nexus_username: ${{ secrets.OSS_USERNAME }}
nexus_password: ${{ secrets.OSS_PASSWORD }}
maven_args: -P doRelease
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0-sa.1] - 2023-09-16

### Added

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

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>2.0.2</version>
<version>3.0.4</version>
<relativePath></relativePath>
</parent>

<name>fj-doc-mod-openpdf</name>
<description>Fugerit DOC module for output in PDF, RTF and HTML using OpenPDF (Itext fork)</description>
<version>1.0.1-SNAPSHOT</version>
<version>1.1.0-sa.1</version>

<licenses>
<license>
Expand Down

0 comments on commit b899722

Please sign in to comment.