This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
79 lines (75 loc) · 2.51 KB
/
merge.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the ODPi Egeria project.
name: "Merge"
# Trigger after code is merged. only on main repo
# - does not run on modification (may be just text)
on:
push:
branches: [main, release-4*]
permissions:
contents: read
jobs:
build:
permissions:
# for gh-pages
contents: write
runs-on: ubuntu-latest
name: "Merge"
if: startsWith(github.repository,'odpi/')
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build and publish to Maven Central
if: ${{ github.ref == 'refs/heads/main' }}
uses: gradle/gradle-build-action@v2
with:
cache-read-only: false
arguments: build publish
env:
OSSRH_GPG_KEYID: ${{ secrets.OSSRH_GPG_KEYID }}
OSSRH_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_PASSPHRASE }}
OSSRH_GPG_PRIVATE_KEY: ${{ secrets.OSSRH_GPG_PRIVATE_KEY }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
- name: Build only (do not publish)
if: ${{ github.ref != 'refs/heads/main' }}
uses: gradle/gradle-build-action@v2
with:
cache-read-only: false
arguments: build
- name: Build JavaDocs
if: ${{ github.ref == 'refs/heads/main' }}
uses: gradle/gradle-build-action@v2
with:
cache-read-only: false
arguments: aggregateJavadoc
- name: Publish JavaDocs
if: ${{ github.ref == 'refs/heads/main' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build/docs/javadoc
- name: Upload log of any dependency failures
uses: actions/upload-artifact@v3
with:
name: Dependency Analysis Report (on failure)
path: build/reports/dependency-analysis/build-health-report.txt
if-no-files-found: ignore
- name: Upload assemblies
uses: actions/upload-artifact@v3
with:
name: Assemblies
path: |
connector/build/libs/*.jar
migrator/build/libs/*.jar
- name: Upload Test coverage report
uses: actions/upload-artifact@v3
with:
name: Jacoco Coverage Report
path: build/reports/jacoco/codeCoverageReport
if-no-files-found: ignore