We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73efe69 commit 8e603c2Copy full SHA for 8e603c2
.github/workflows/maven.yml
@@ -1,12 +1,8 @@
1
name: Java CI
2
-
3
on: [push]
4
5
jobs:
6
build:
7
8
runs-on: ubuntu-latest
9
10
steps:
11
- uses: actions/checkout@v2
12
- name: Set up JDK 1.8
@@ -15,3 +11,10 @@ jobs:
15
java-version: 1.8
16
- name: Build with Maven
17
13
run: mvn -B package --file pom.xml
14
+ - run: mkdir -p ./artifacts
+ - run: cp target/SuperCoreAPI.jar ./artifacts/
+ - uses: actions/upload-artifact@v2
+ with:
18
+ name: SuperCoreAPI
19
+ path: ./artifacts/SuperCoreAPI.jar
20
+
0 commit comments