Skip to content

Merge pull request #47 from equinix-labs/sync/gh-1718126274 #9

Merge pull request #47 from equinix-labs/sync/gh-1718126274

Merge pull request #47 from equinix-labs/sync/gh-1718126274 #9

Workflow file for this run

# 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
env:
TEST_DATA_UAT_QINQ_PORT: ${{ secrets.TEST_DATA_UAT_QINQ_PORT }}
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: 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 \
-DenvUrl=${{ env.TEST_HOST_URL }} -DuserName=${{ env.TEST_USER_NAME }} -DuserPassword=${{ env.TEST_USER_PASSWORD }} \
-DclientId=${{ env.CLIENT_ID }} -DclientSecret=${{ env.CLIENT_SECRET }}
env:
GITHUB_TOKEN: ${{ github.token }}
TEST_HOST_URL: https://uatapi.equinix.com
CLIENT_ID: ${{ secrets.TEST_USER_CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.TEST_USER_CLIENT_SECRET }}
TEST_USER_NAME: ${{ secrets.TEST_USER_NAME }}
TEST_USER_PASSWORD: ${{ secrets.TEST_USER_PASSWORD }}