-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Create legacy branch for java 11
- Loading branch information
1 parent
5165199
commit 4afaaa4
Showing
2 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters