From 937598e04a9592275b0ae917a920813c68c1df37 Mon Sep 17 00:00:00 2001 From: Gordon Smith Date: Thu, 20 Jul 2023 17:46:54 +0100 Subject: [PATCH 1/2] Split off 9.0.28 Signed-off-by: Gordon Smith --- commons-hpcc/pom.xml | 2 +- dfsclient/pom.xml | 2 +- pom.xml | 2 +- wsclient/pom.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-hpcc/pom.xml b/commons-hpcc/pom.xml index acfb4759c..a78073c50 100644 --- a/commons-hpcc/pom.xml +++ b/commons-hpcc/pom.xml @@ -9,7 +9,7 @@ org.hpccsystems hpcc4j - 9.0.27-0-SNAPSHOT + 9.0.29-0-SNAPSHOT diff --git a/dfsclient/pom.xml b/dfsclient/pom.xml index a5913361d..d9160009f 100644 --- a/dfsclient/pom.xml +++ b/dfsclient/pom.xml @@ -9,7 +9,7 @@ org.hpccsystems hpcc4j - 9.0.27-0-SNAPSHOT + 9.0.29-0-SNAPSHOT diff --git a/pom.xml b/pom.xml index e37f1cc09..8df6b2733 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 org.hpccsystems hpcc4j - 9.0.27-0-SNAPSHOT + 9.0.29-0-SNAPSHOT pom HPCC Systems Java Projects https://hpccsystems.com diff --git a/wsclient/pom.xml b/wsclient/pom.xml index bf97b4963..7835a00e4 100644 --- a/wsclient/pom.xml +++ b/wsclient/pom.xml @@ -9,7 +9,7 @@ org.hpccsystems hpcc4j - 9.0.27-0-SNAPSHOT + 9.0.29-0-SNAPSHOT From 32927555fc8cbc3e91390b55f8890b6afdf0b3d2 Mon Sep 17 00:00:00 2001 From: James McMullan Date: Thu, 27 Jul 2023 09:46:02 -0400 Subject: [PATCH 2/2] HPCC4J-501 Deploy artifacts via github action (#628) - Added a new github action workflow to publish builds on release tag Signed-off-by: James McMullan James.McMullan@lexisnexis.com Signed-off-by: James McMullan James.McMullan@lexisnexis.com --- .../workflows/publish-release-on-merge.yml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/publish-release-on-merge.yml diff --git a/.github/workflows/publish-release-on-merge.yml b/.github/workflows/publish-release-on-merge.yml new file mode 100644 index 000000000..d1e2893a2 --- /dev/null +++ b/.github/workflows/publish-release-on-merge.yml @@ -0,0 +1,26 @@ +name: Publish release to the Maven Central Repository +on: + push: + tags: + - '*-release' +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Maven Central Repository + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'adopt' + server-id: ossrh + server-username: MAVEN_USERNAME + server-password: MAVEN_PASSWORD + gpg-private-key: ${{ secrets.SIGNING_SECRET }} + gpg-passphrase: MAVEN_GPG_PASSPHRASE + - name: Publish package + run: mvn -Pjenkins-release -Dgpg.passphrase=${{ secrets.SIGN_MODULES_PASSPHRASE }} -DstagingProgressTimeoutMinutes=20 clean deploy -e + env: + MAVEN_USERNAME: ${{ secrets.OSSRH_USER_NAME }} + MAVEN_PASSWORD: ${{ secrets.OSSRH_PASS }} + MAVEN_GPG_PASSPHRASE: ${{ secrets.SIGN_MODULES_PASSPHRASE }} \ No newline at end of file