Skip to content

Commit 8e603c2

Browse files
author
Francisco Solis
authored
Added Artifact BUild
1 parent 73efe69 commit 8e603c2

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/maven.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
name: Java CI
2-
32
on: [push]
4-
53
jobs:
64
build:
7-
85
runs-on: ubuntu-latest
9-
106
steps:
117
- uses: actions/checkout@v2
128
- name: Set up JDK 1.8
@@ -15,3 +11,10 @@ jobs:
1511
java-version: 1.8
1612
- name: Build with Maven
1713
run: mvn -B package --file pom.xml
14+
- run: mkdir -p ./artifacts
15+
- run: cp target/SuperCoreAPI.jar ./artifacts/
16+
- uses: actions/upload-artifact@v2
17+
with:
18+
name: SuperCoreAPI
19+
path: ./artifacts/SuperCoreAPI.jar
20+

0 commit comments

Comments
 (0)