-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 1.2 KB
/
development.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
name: Development branches
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
name: Build and run tests
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
- name: Expose branch name
run: echo ${{ github.ref }}
# Setup JDK and Maven
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11.0.5
distribution: 'zulu'
cache: maven
server-id: ossrh
server-username: OSS_CENTRAL_USERNAME # env variable for Maven Central
server-password: OSS_CENTRAL_PASSWORD # env variable for Maven Central
# Prepare
- name: Prepare Maven Wrapper
run: chmod +x ./mvnw
# Build
- name: Build with Maven
run: ./mvnw clean verify -U -B -T4 -ntp
# # Publish snapshot
# - name: Deploy a new snapshot to Maven Central
# run: ./mvnw clean deploy -B -DskipTests -DskipExamples -Prelease -Dgpg.keyname=${{ secrets.GPG_KEYNAME }} -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}
# env:
# OSS_CENTRAL_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
# OSS_CENTRAL_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}