mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 10:35:16 +01:00
Lets also test artifact uploading
This commit is contained in:
parent
c499c778a5
commit
cc5534a50d
10
.github/workflows/gradle.yml
vendored
10
.github/workflows/gradle.yml
vendored
@ -4,9 +4,7 @@ on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up JDK 1.8
|
||||
@ -15,3 +13,11 @@ jobs:
|
||||
java-version: 1.8
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew shadowJar
|
||||
|
||||
artifact:
|
||||
needs: build
|
||||
steps:
|
||||
- uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: artifact
|
||||
path: build/libs/BlueMap.jar
|
||||
|
@ -33,7 +33,7 @@ dependencies {
|
||||
|
||||
shadowJar {
|
||||
baseName = 'BlueMap'
|
||||
version = '0.1.0'
|
||||
version = null
|
||||
classifier = null
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user