Skip to content

Commit f88f3bd

Browse files
authored
Merge pull request #37 from Bandwidth/task/update-workflows
DX-2005 Update workflows
2 parents 48de5cd + 66f6cb3 commit f88f3bd

File tree

13 files changed

+72
-115
lines changed

13 files changed

+72
-115
lines changed

.github/actions/deploy/Dockerfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/actions/deploy/action.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/actions/deploy/entrypoint.sh

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/actions/maven-install/Dockerfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/actions/maven-install/action.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/actions/maven-install/entrypoint.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/secrets/private.key.enc

-2.55 KB
Binary file not shown.

.github/secrets/public.key

-1.21 KB
Binary file not shown.
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)