Skip to content

Commit 291c78b

Browse files
committed
Build using updating workflow
1 parent b0d2f8b commit 291c78b

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed
Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
name: Check SDK
2-
1+
name: Build package using Maven
32
on:
4-
pull_request:
5-
schedule:
6-
- cron: "0 4 * * *"
7-
3+
pull_request:
4+
schedule:
5+
- cron: '0 4 * * *'
86
jobs:
9-
validate-sdk:
10-
name: Validate SDK
7+
build:
118
runs-on: ubuntu-latest
129
steps:
13-
- name: Checkout
14-
uses: actions/checkout@v1
15-
- name: Java Maven Install
16-
uses: ./.github/actions/maven-install
10+
- uses: actions/checkout@v2
11+
- name: Set up JDK 11
12+
uses: actions/setup-java@v2
13+
with:
14+
distribution: 'adopt'
15+
java-version: '11'
16+
17+
- name: Build with Maven
18+
run: mvn -B package --file pom.xml
1719
env:
18-
GPG_KEY_PASSPHRASE: ${{ secrets.PRIVATE_KEY_PASSPHRASE }}
1920
BW_ACCOUNT_ID: ${{ secrets.BW_ACCOUNT_ID }}
2021
BW_PASSWORD: ${{ secrets.BW_PASSWORD }}
2122
BW_USERNAME: ${{ secrets.BW_USERNAME }}

0 commit comments

Comments
 (0)