Skip to content

Commit 2cfc6d2

Browse files
authored
Created build settings
1 parent c73aeff commit 2cfc6d2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CommandFramework Build
2+
3+
on:
4+
push:
5+
branches: [master]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
if: "!contains(github.event.head_commit.message, '[skip]')"
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up JDK 8
14+
uses: actions/setup-java@v1
15+
with:
16+
java-version: 8
17+
- name: Build with Maven
18+
run: mvn -B package --file pom.xml
19+
- name: Upload artifact
20+
uses: actions/upload-artifact@v2
21+
with:
22+
name: CommandFramework
23+
path: target/**

0 commit comments

Comments
 (0)