Merge pull request #541 from camunda-community-hub/renovate/spring-cloud #477
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
# If this workflow is triggered by a push to master, it | |
# deploys a SNAPSHOT | |
# If this workflow is triggered by publishing a Release, it | |
# deploys a RELEASE with the selected version | |
# updates the project version by incrementing the patch version | |
# commits the version update change to the repository's default branch. | |
name: Deploy artifacts with Maven | |
on: | |
push: | |
branches: [master] | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checks out code | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Set up Java environment | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
gpg-private-key: ${{ secrets.MAVEN_CENTRAL_GPG_SIGNING_KEY_SEC }} | |
gpg-passphrase: MAVEN_CENTRAL_GPG_PASSPHRASE | |
- name: Run Maven | |
run: mvn -B clean install # com.mycila:license-maven-plugin:check # disabled for the moment | |
- name: Run I-Tests and generate coverage reports | |
run: mvn -B -Pitest verify failsafe:verify | |
- name: Deploy SNAPSHOT / Release | |
uses: camunda-community-hub/community-action-maven-release@v1 | |
id: release | |
with: | |
maven-release-options: -DskipExamples # avoid publication of examples into public repositories | |
release-version: ${{ github.event.release.tag_name }} | |
release-profile: community-action-maven-release | |
central-release-profile: oss-maven-central | |
nexus-usr: ${{ secrets.NEXUS_USR }} | |
nexus-psw: ${{ secrets.NEXUS_PSW }} | |
maven-usr: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_USR }} | |
maven-psw: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_PSW }} | |
maven-url: oss.sonatype.org | |
maven-gpg-passphrase: ${{ secrets.MAVEN_CENTRAL_GPG_SIGNING_KEY_PASSPHRASE }} | |
maven-auto-release-after-close: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Attach artifacts to GitHub Release (Release only) | |
if: github.event.release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ${{ steps.release.outputs.artifacts_archive_path }} | |
asset_name: ${{ steps.release.outputs.artifacts_archive_path }} | |
asset_content_type: application/zip | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload coverage to Codacy | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: examples/coverage-report/target/site/jacoco-aggregate/jacoco.xml |