-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (56 loc) · 1.78 KB
/
maven.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
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Maven Package
on:
workflow_dispatch:
pull_request:
branches: [ master ]
jobs:
build-linux:
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
server-username: GITHUB_USER_REF # env variable name for username
server-password: GITHUB_TOKEN_REF # env variable name for GitHub Personal Access Token:
- uses: s4u/[email protected]
with:
servers: |
[{
"id": "core",
"username": "${{ secrets.DPHE_ROBOT_USERNAME }}",
"password": "${{ secrets.DPHE_ROBOT_ACCESS_TOKEN }}"
},
{
"id": "onto-db",
"username": "${{ secrets.DPHE_ROBOT_USERNAME }}",
"password": "${{ secrets.DPHE_ROBOT_ACCESS_TOKEN }}"
}]
- name: Build with Maven
run: mvn -e -B package --file pom.xml
env:
GITHUB_USER_REF: ${{ secrets.DPHE_ROBOT_USERNAME }}
GITHUB_TOKEN_REF: ${{ secrets.DPHE_ROBOT_ACCESS_TOKEN }}
# build-mac:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v2
# - name: Set up JDK 1.8
# uses: actions/setup-java@v1
# with:
# java-version: 1.8
# - name: Build with Maven
# run: mvn -B test --file pom.xml
# build-windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - name: Set up JDK 1.8
# uses: actions/setup-java@v1
# with:
# java-version: 1.8
# - name: Build with Maven
# run: mvn -B test --file pom.xml