We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 230c181 commit dcd5bf9Copy full SHA for dcd5bf9
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,35 @@
1
+name: build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ tags:
8
+ - "*-[0-9]+.*"
9
+ pull_request:
10
11
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up Java
20
+ uses: actions/setup-java@v3
21
+ with:
22
+ java-version: '8'
23
+ distribution: 'zulu'
24
+ cache: 'maven'
25
+ - name: Set up CI environment
26
+ run: .github/setup.sh
27
+ - name: Execute the build
28
+ run: .github/build.sh
29
+ env:
30
+ GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }}
31
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
32
+ MAVEN_USER: ${{ secrets.MAVEN_USER }}
33
+ MAVEN_PASS: ${{ secrets.MAVEN_PASS }}
34
+ OSSRH_PASS: ${{ secrets.OSSRH_PASS }}
35
+ SIGNING_ASC: ${{ secrets.SIGNING_ASC }}
0 commit comments