forked from shagaba/jacksync
-
Notifications
You must be signed in to change notification settings - Fork 0
152 lines (117 loc) · 4.16 KB
/
publish.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: jacksync
on: [ push, pull_request ]
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
OSSRH_GPG_SECRET_ID: ${{ secrets.OSSRH_GPG_SECRET_ID }}
OSSRH_GPG_SECRET_PASSWORD: ${{ secrets.OSSRH_GPG_SECRET_PASSWORD }}
jobs:
build:
runs-on: ubuntu-latest
if: startsWith(github.event.head_commit.message, 'bumped version to ') != true
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up JDK 8.0.402+6
uses: actions/[email protected]
with:
java-version: 8.0.402+6
distribution: adopt
- name: Cache dependencies
uses: actions/[email protected]
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Prepare to build
run: chmod +x ./gradlew
- name: Build project
run: ./gradlew build -x test
test:
needs: [ build ]
runs-on: ubuntu-latest
if: startsWith(github.event.head_commit.message, 'bumped version to ') != true
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up JDK 8.0.402+6
uses: actions/[email protected]
with:
java-version: 8.0.402+6
distribution: adopt
- name: Cache dependencies
uses: actions/[email protected]
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Prepare to build
run: chmod +x ./gradlew
- name: Run tests
run: ./gradlew check test -S
deploy_snapshot:
needs: [ build, test ]
runs-on: ubuntu-latest
if: (github.ref == 'refs/heads/master') && startsWith(github.event.head_commit.message, 'release:') != true
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up JDK 8.0.402+6
uses: actions/[email protected]
with:
java-version: 8.0.402+6
distribution: adopt
- name: Cache dependencies
uses: actions/[email protected]
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Prepare to build
run: |
chmod +x ./gradlew
git show-ref
git log --graph --full-history --all --color --date=short --pretty=format:"%Cred%x09%h %Creset%ad%Cgreen%d %Creset %s %C(bold)(%an)%Creset" || true
- id: install-secret-key
name: Install gpg secret key
run: echo "${{ secrets.OSSRH_GPG_SECRET_KEY }}" | base64 -d > ./secret.gpg
- id: publish
name: Publish snapshot
run: |
newVersion=`./gradlew derive --preRelease='SNAPSHOT' -i | grep 'NEXT_VERSION:==' | sed 's/^.*NEXT_VERSION:==//g'`
echo "newVersion: ${newVersion}"
./gradlew bumpVersion -P newVersion=${newVersion} 1>/dev/null 2>/dev/null
./gradlew clean publish -x test -P OSSRH_GPG_SECRET_KEY=./secret.gpg
rm -rf ./secret.gpg
deploy_release:
needs: [ build, test ]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') && startsWith(github.event.head_commit.message, 'release')
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up JDK 8.0.402+6
uses: actions/[email protected]
with:
java-version: 8.0.402+6
distribution: adopt
- name: Cache dependencies
uses: actions/[email protected]
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Prepare to build
run: |
chmod +x ./gradlew
git show-ref
git log --graph --full-history --all --color --date=short --pretty=format:"%Cred%x09%h %Creset%ad%Cgreen%d %Creset %s %C(bold)(%an)%Creset" || true
- id: install-secret-key
name: Install gpg secret key
run: echo "${{ secrets.OSSRH_GPG_SECRET_KEY }}" | base64 -d > ./secret.gpg
- name: Publish release
run: ./gradlew clean publish -x test -P OSSRH_GPG_SECRET_KEY=./secret.gpg