-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (96 loc) · 2.81 KB
/
gradle.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
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Import Signing Key
run: |
cat << EOF > ./key.gpg
${{ secrets.GPG_KEY }}
EOF
gpg --import --batch ./key.gpg
gpg --pinentry-mode loopback --passphrase ${{ secrets.GPG_PASSWORD}} --export-secret-keys A47EDDB49D1CC789 > /home/runner/.gnupg/secring.gpg
- name: Generate Gradle Properties
run: |
cat << EOF > ./gradle.properties
nexusUsername=test
nexusPassword=placeholder
signing.keyId=9D1CC789
signing.password=${{ secrets.GPG_PASSWORD }}
signing.secretKeyRingFile=/home/runner/.gnupg/secring.gpg
EOF
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload gradle.properties
uses: actions/upload-artifact@v1
with:
name: properties
path: gradle.properties
- name: Upload Build
uses: actions/upload-artifact@v1
with:
name: build
path: build
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Download gradle.properties
uses: actions/download-artifact@v4.1.7
with:
name: properties
path: ./
- name: Download Build
uses: actions/download-artifact@v4.1.7
with:
name: build
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew test
publish:
needs: test
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Download gradle.properties
uses: actions/download-artifact@v4.1.7
with:
name: properties
path: ./
- name: Download Build
uses: actions/download-artifact@v4.1.7
with:
name: build
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Update Version
run: sed -i -r "s/^version = '[0-9a-z.-]+'\$/version = '${GITHUB_REF##*/}-${GITHUB_SHA:0:8}'/g" build.gradle
- name: Publish package
uses: gradle/gradle-build-action@v2
with:
arguments: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}