-
Notifications
You must be signed in to change notification settings - Fork 52
86 lines (86 loc) · 3.51 KB
/
openapi-publish.yaml
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
80
81
82
83
84
85
86
name: Publish OpenAPI Client
on:
workflow_dispatch:
jobs:
publish-openapi:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Compute commit SHA
run: |
echo "COMMITSHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Update release versions
run: |
mvn versions:set -DnewVersion="0.1.0-${{ env.COMMITSHA }}"
mvn versions:update-child-modules -Pdse,dse7
- name: Setup Maven settings.xml
run: |
cat <<EOF > ~/.m2/settings.xml
<settings>
<servers>
<server>
<id>artifactory-releases</id>
<username>${{ secrets.ARTIFACTORY_USERNAME }}</username>
<password>${{ secrets.ARTIFACTORY_PASSWORD }}</password>
</server>
<server>
<id>artifactory</id>
<username>${{ secrets.ARTIFACTORY_USERNAME }}</username>
<password>${{ secrets.ARTIFACTORY_PASSWORD }}</password>
</server>
<server>
<id>cloudsmith</id>
<username>${{ secrets.CLOUDSMITH_USERNAME }}</username>
<password>${{ secrets.CLOUDSMITH_PASSWORD }}</password>
</server>
</servers>
</settings>
EOF
# Commenting Datastax Artifactory out for now
# - name: Compile and deploy Artifacts (Datastax Artifactory)
# if: ${{ inputs.repository == 'datastax' || inputs.repository == 'both' }}
# run: |
# REPO="artifactory-releases::default::https://repo.datastax.com/artifactory/datastax-public-releases-local"
# mvn -B deploy \
# -P dse,dse7 \
# -DskipTests \
# -DaltDeploymentRepository="${REPO}" \
# -DaltSnapshotDeploymentRepository="${REPO}"
- name: Compile and deploy Artifacts (Cloudsmith.io Artifactory)
run: |
REPO="cloudsmith::default::https://maven.cloudsmith.io/thelastpickle/reaper-mvn/"
mvn -B deploy \
-P dse,dse7 \
-DskipTests \
-DaltDeploymentRepository="${REPO}" \
-DaltSnapshotDeploymentRepository="${REPO}"
# Commenting Datastax Artifactory out for now
# - name: Compile and deploy OpenAPI client (Datastax Artifactory)
# if: ${{ inputs.repository == 'datastax' || inputs.repository == 'both' }}
# run: |
# REPO="artifactory-releases::default::https://repo.datastax.com/artifactory/datastax-public-releases-local"
# mvn -B deploy \
# -f management-api-server/target/generated-sources/openapi/java-client/pom.xml \
# -DskipTests \
# -DaltDeploymentRepository="${REPO}" \
# -DaltSnapshotDeploymentRepository="${REPO}"
- name: Compile and deploy OpenAPI client (Cloudsmith.io Artifactory)
run: |
REPO="cloudsmith::default::https://maven.cloudsmith.io/thelastpickle/reaper-mvn/"
mvn -B deploy \
-f management-api-server/target/generated-sources/openapi/java-client/pom.xml \
-DskipTests \
-DaltDeploymentRepository="${REPO}" \
-DaltSnapshotDeploymentRepository="${REPO}"