From be8a0f17074a668ec1a33fc65a8d5be92b18b0b2 Mon Sep 17 00:00:00 2001 From: Marques Johansson Date: Mon, 23 Jan 2023 10:28:57 -0500 Subject: [PATCH] add GH action to publish maven packages to GH Signed-off-by: Marques Johansson --- .github/workflows/maven-publish.yml | 38 +++++++++++++++++++++++++++++ 1 file changed, 38 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 00000000..15c7b3ec --- /dev/null +++ b/.github/workflows/maven-publish.yml @@ -0,0 +1,38 @@ +# 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 publish package + +on: + push: + tags: + # listen to tags that starts with the letter v as a convention to release tags. + - v* + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + 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 + working-directory: ./equinix-openapi-fabric + run: mvn -B package --file pom.xml + + - name: Publish to GitHub Packages Apache Maven + working-directory: ./equinix-openapi-fabric + run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml -DaltDeploymentRepository=github::default::https://maven.pkg.github.com/equinix-labs/fabric-java + env: + GITHUB_TOKEN: ${{ github.token }}