97 lines
3.4 KiB
YAML
97 lines
3.4 KiB
YAML
# 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
|
|
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
AWS_CA_TOKEN:
|
|
required: true
|
|
MVN_SETTINGS_XML:
|
|
required: true
|
|
JAVA_VERSION:
|
|
required: true
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Maven
|
|
uses: stCarolas/setup-maven@v5
|
|
with:
|
|
maven-version: '3.9.9'
|
|
|
|
- name: Print branch
|
|
run: |
|
|
echo "Running on branch: $BRANCH"
|
|
env:
|
|
BRANCH: ${{ github.ref }}
|
|
|
|
- name: Set up JDK 21
|
|
if: github.ref == 'refs/heads/feature/T2900-java21' || github.ref == 'refs/heads/feature/T2900-java-21'
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '21'
|
|
distribution: 'corretto'
|
|
|
|
- name: Set up JDK from ENV
|
|
if: github.ref != 'refs/heads/feature/T2900-java21' && github.ref != 'refs/heads/feature/T2900-java-21'
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '${{ secrets.JAVA_VERSION }}'
|
|
distribution: 'corretto'
|
|
|
|
- name: Create Maven settings
|
|
run: |
|
|
echo -e "$SETTINGS_XML" > ~/.m2/settings.xml
|
|
env:
|
|
SETTINGS_XML: ${{ secrets.MVN_SETTINGS_XML }}
|
|
|
|
- name: Deploy artifacts
|
|
run: |
|
|
mvn clean deploy -U --file pom.xml -DrepositoryId=pravila--pravila-maven
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
CODEARTIFACT_AUTH_TOKEN: ${{ secrets.AWS_CA_TOKEN }}
|
|
|
|
- name: Upload snapshot to nexus
|
|
run: |
|
|
GROUP_ID=$(mvn help:evaluate -Dexpression="project.groupId" -q -DforceStdout)
|
|
ARTIFACT_ID=$(mvn help:evaluate -Dexpression="project.artifactId" -q -DforceStdout)
|
|
VERSION=$(mvn help:evaluate -Dexpression="project.version" -q -DforceStdout)
|
|
if [ $VERSION == *-SNAPSHOT ];
|
|
then
|
|
echo "Version is snapshot version, proceeding with upload to local-nexus snapshots"
|
|
PACKAGING=$(mvn help:evaluate -Dexpression="project.packaging" -q -DforceStdout)
|
|
echo "Uploading artifact for $GROUP_ID:$ARTIFACT_ID:$VERSION"
|
|
if [ $PACKAGING == "pom" ];
|
|
then
|
|
echo "Packaging is pom, uploading pom.xml"
|
|
mvn deploy:deploy-file \
|
|
-Durl=https://devops.pravilanovait.hr/nexus/repository/maven-snapshots \
|
|
-Dpackaging=pom -DgroupId=$GROUP_ID -DartifactId=$ARTIFACT_ID \
|
|
-Dversion=$VERSION -DrepositoryId=local-nexus \
|
|
-Dfile=pom.xml
|
|
else
|
|
echo "Packaging is $PACKAGING, uploading target/$ARTIFACT_ID-$VERSION.$PACKAGING"
|
|
mvn deploy:deploy-file \
|
|
-Durl=https://devops.pravilanovait.hr/nexus/repository/maven-snapshots \
|
|
-Dpackaging=$PACKAGING -DgroupId=$GROUP_ID -DartifactId=$ARTIFACT_ID \
|
|
-Dversion=$VERSION -DrepositoryId=local-nexus \
|
|
-Dfile=target/$ARTIFACT_ID-$VERSION.$PACKAGING
|
|
fi
|
|
else
|
|
echo "Version is not snapshot version, not uploading to local-nexus snapshots"
|
|
fi
|
|
|
|
env:
|
|
NEXUS_ADMIN_PASSWORD: ${{ secrets.NEXUS_ADMIN_PASSWORD }}
|