-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (33 loc) · 928 Bytes
/
build.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
name: Build
on:
push:
branches-ignore:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Determine Simple Features Repository
uses: frabert/replace-string-action@master
id: sf-repository
with:
pattern: 'proj-'
string: "${{ github.repository }}"
replace-with: ''
- name: Checkout Simple Features Repository
uses: actions/checkout@v3
with:
repository: ${{ steps.sf-repository.outputs.replaced }}
ref: ${{ github.ref }}
path: simple-features-java
- name: set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Build & Install Simple Features
run: mvn -f simple-features-java clean install -DskipTests
- name: Checkout Repository
uses: actions/checkout@v3
- name: Build
run: mvn clean package -DskipTests