[maven-release-plugin] prepare release legend-depot-2.39.1 #2059
Workflow file for this run
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
# Copyright 2021 Goldman Sachs | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Build CI | |
env: | |
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} | |
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
on: [push, pull_request] | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, '[maven-release-plugin]')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Cache Maven dependencies | |
uses: actions/cache@v2.1.6 | |
env: | |
cache-name: cache-mvn-deps | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "zulu" | |
java-version: "17" | |
server-id: ossrh | |
server-username: CI_DEPLOY_USERNAME | |
server-password: CI_DEPLOY_PASSWORD | |
- name: Configure git | |
run: | | |
git config --global committer.email "infra@finos.org" | |
git config --global committer.name "FINOS Admin" | |
git config --global author.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
git config --global author.name "${GITHUB_ACTOR}" | |
- name: Download deps and plugins | |
run: mvn de.qaware.maven:go-offline-maven-plugin:1.2.8:resolve-dependencies | |
env: | |
MAVEN_OPTS: -Xmx6g | |
- name: Collect Workflow Telemetry | |
uses: runforesight/workflow-telemetry-action@v1 | |
with: | |
theme: dark | |
- name: Build + Test | |
if: (github.repository != 'finos/legend-depot') || (github.ref != 'refs/heads/master') || (github.ref != 'refs/heads/integration') | |
run: mvn install javadoc:javadoc | |
- name: Build + Test + Sonar + Maven Deploy | |
if: (github.repository == 'finos/legend-depot') && ((github.ref == 'refs/heads/master') || (github.ref == 'refs/heads/integration')) | |
env: | |
DOCKER_USERNAME: finos | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
run: mvn javadoc:javadoc deploy -P sonar,docker-snapshot |