Skip to content

Commit

Permalink
chore: Create legacy branch for java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
enricocolasante committed Oct 12, 2023
1 parent 5165199 commit 4afaaa4
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
48 changes: 48 additions & 0 deletions .github/workflows/legacy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Merge to Legacy

on:
push:
branches:
- 'legacy'

jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Test
run: mvn clean install -DskipTests=false --update-snapshots -q

artifact:
name: Publish - Nexus
runs-on: ubuntu-latest
needs: unit-test

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- name: Remove snapshot
run: mvn -B versions:set -DremoveSnapshot -DgenerateBackupPoms=false
- name: Release Maven package
uses: samuelmeuli/action-maven-publish@v1
with:
nexus_username: ${{ secrets.SONATYPE_OSSRH_USERNAME }}
nexus_password: ${{ secrets.SONATYPE_OSSRH_PASSWORD }}
gpg_private_key: ${{ secrets.PGP_PRIVATE_KEY }}
gpg_passphrase: ${{ secrets.PGP_PASSPHRASE }}
maven_profiles: "master"
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.hisp.dhis.rules</groupId>
<artifactId>rule-engine</artifactId>
<version>2.1.8-SNAPSHOT</version>
<version>2.1.8.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>rule-engine</name>

Expand Down

0 comments on commit 4afaaa4

Please sign in to comment.