From 451a63e4df410b5e31b3d172a6d614f96b4a847a Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Fri, 25 Mar 2022 20:30:47 +0200 Subject: [PATCH 1/3] Create maven-publish.yml --- .github/workflows/maven-publish.yml | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/maven-publish.yml diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml new file mode 100644 index 0000000..f0962e6 --- /dev/null +++ b/.github/workflows/maven-publish.yml @@ -0,0 +1,34 @@ +# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path + +name: Maven Package + +on: + release: + types: [created] + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '18' + distribution: 'openjdk' + server-id: github # Value of the distributionManagement/repository/id field of the pom.xml + settings-path: ${{ github.workspace }} # location for the settings.xml file + + - name: Build with Maven + run: mvn -B package --file pom.xml + + - name: Publish to GitHub Packages Apache Maven + run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml + env: + GITHUB_TOKEN: ${{ github.token }} From c4ac9005be5a75915463c2bf4f25ab2b47253dad Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Fri, 25 Mar 2022 20:33:47 +0200 Subject: [PATCH 2/3] Update maven-publish.yml --- .github/workflows/maven-publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index f0962e6..591a9f2 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -4,6 +4,9 @@ name: Maven Package on: + push: + branches: + - master release: types: [created] From 2091cc4c0ceda902ada0c84cba4a7407d7908c07 Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Fri, 25 Mar 2022 20:37:40 +0200 Subject: [PATCH 3/3] Update maven-publish.yml --- .github/workflows/maven-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index 591a9f2..529a93c 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -23,8 +23,8 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v2 with: - java-version: '18' - distribution: 'openjdk' + distribution: 'temurin' # See 'Supported distributions' for available options + java-version: '17' server-id: github # Value of the distributionManagement/repository/id field of the pom.xml settings-path: ${{ github.workspace }} # location for the settings.xml file